Skip to content

Commit 3e4277b

Browse files
committedAug 7, 2013
making VS2013 integration to work on 4.5.1 framework
1 parent a5b74f1 commit 3e4277b

11 files changed

+520
-762
lines changed
 

‎BuildInstallerFast-4.5-2013.cmd

-3
This file was deleted.

‎BuildInstallerFast-4.5.1.cmd

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
set MSBuild="%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild.exe"
2+
3+
%MSBuild% NemerleAll.nproj /t:InstallerFast /tv:4.0 /p:TargetFrameworkVersion=v4.5.1;Configuration=Release

‎Nemerle.Compiler.nproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<Nemerle Condition=" '$(Nemerle)' == '' And ('$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5')">$(MSBuildProjectDirectory)\boot</Nemerle>
55
<Nemerle Condition=" '$(Nemerle)' == '' And '$(TargetFrameworkVersion)' == 'v4.0'">$(MSBuildProjectDirectory)\boot-4.0</Nemerle>
66
<Nemerle Condition=" '$(Nemerle)' == '' And '$(TargetFrameworkVersion)' == 'v4.5'">$(MSBuildProjectDirectory)\boot-4.0</Nemerle>
7+
<Nemerle Condition=" '$(Nemerle)' == '' And '$(TargetFrameworkVersion)' == 'v4.5.1'">$(MSBuildProjectDirectory)\boot-4.0</Nemerle>
78
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
89
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
910
<SchemaVersion>2.0</SchemaVersion>
@@ -13,7 +14,7 @@
1314
<TargetPlatform>v2</TargetPlatform>
1415
<DefineConstants>RUNTIME_MS</DefineConstants>
1516
<DefineConstants>_stage3</DefineConstants>
16-
<DefineConstants Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">NET_4_0</DefineConstants>
17+
<DefineConstants Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">NET_4_0</DefineConstants>
1718
<WarningLevel>4</WarningLevel>
1819
<NoStdLib>true</NoStdLib>
1920
<EnabledWarnings>10006</EnabledWarnings>

‎Nemerle.MSBuild.Tasks.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
<Reference Condition="'$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5'" Include="Microsoft.Build.Tasks.v3.5">
3838
<RequiredTargetFramework>3.5</RequiredTargetFramework>
3939
</Reference>
40-
<Reference Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'" Include="Microsoft.Build.Tasks.v4.0">
40+
<Reference Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'" Include="Microsoft.Build.Tasks.v4.0">
4141
<RequiredTargetFramework>4.0</RequiredTargetFramework>
4242
</Reference>
4343
<Reference Condition="'$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5'" Include="Microsoft.Build.Utilities.v3.5">
4444
<RequiredTargetFramework>3.5</RequiredTargetFramework>
4545
</Reference>
46-
<Reference Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'" Include="Microsoft.Build.Utilities.v4.0">
46+
<Reference Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'" Include="Microsoft.Build.Utilities.v4.0">
4747
<RequiredTargetFramework>4.0</RequiredTargetFramework>
4848
</Reference>
4949
<Reference Include="System" />

‎Nemerle.Macros.nproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<Nemerle Condition=" '$(Nemerle)' == '' And ('$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5')">$(MSBuildProjectDirectory)\boot</Nemerle>
55
<Nemerle Condition=" '$(Nemerle)' == '' And '$(TargetFrameworkVersion)' == 'v4.0'">$(MSBuildProjectDirectory)\boot-4.0</Nemerle>
66
<Nemerle Condition=" '$(Nemerle)' == '' And '$(TargetFrameworkVersion)' == 'v4.5'">$(MSBuildProjectDirectory)\boot-4.0</Nemerle>
7+
<Nemerle Condition=" '$(Nemerle)' == '' And '$(TargetFrameworkVersion)' == 'v4.5.1'">$(MSBuildProjectDirectory)\boot-4.0</Nemerle>
78
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
89
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
910
<SchemaVersion>2.0</SchemaVersion>
@@ -13,7 +14,7 @@
1314
<TargetPlatform>v2</TargetPlatform>
1415
<DefineConstants>RUNTIME_MS</DefineConstants>
1516
<DefineConstants>_stage3</DefineConstants>
16-
<DefineConstants Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">NET_4_0</DefineConstants>
17+
<DefineConstants Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">NET_4_0</DefineConstants>
1718
<WarningLevel>4</WarningLevel>
1819
<NoStdLib>true</NoStdLib>
1920
<!--NoStdMacros>true</NoStdMacros-->

‎NemerleAll-2013.nproj

-441
This file was deleted.

‎NemerleAll.nproj

+18-11
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PropertyGroup Condition=" '$(NInstall)' == '' ">
77
<!--Folder for Nemerle installation. To install use "Install" terget.-->
88
<NInstall Condition="'$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5'">$(ProgramFiles)\Nemerle\Net-3.5</NInstall>
9-
<NInstall Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">$(ProgramFiles)\Nemerle\Net-4.0</NInstall>
9+
<NInstall Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">$(ProgramFiles)\Nemerle\Net-4.0</NInstall>
1010
</PropertyGroup>
1111
<PropertyGroup>
1212
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -15,17 +15,18 @@
1515
<NVer Condition="'$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5'">net-3.5</NVer>
1616
<NVer Condition="'$(TargetFrameworkVersion)' == 'v4.0'">net-4.0</NVer>
1717
<NVer Condition="'$(TargetFrameworkVersion)' == 'v4.5'">net-4.5</NVer>
18+
<NVer Condition="'$(TargetFrameworkVersion)' == 'v4.5.1'">net-4.5.1</NVer>
1819
<!-- Original boot -->
1920
<NRootBoot Condition="'$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5'">$(NRoot)\boot\</NRootBoot>
20-
<NRootBoot Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">$(NRoot)\boot-4.0\</NRootBoot>
21+
<NRootBoot Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">$(NRoot)\boot-4.0\</NRootBoot>
2122
<!--Path to stages output directory (including current configuration subfolder).-->
2223
<NBin>$(NRoot)\bin\$(Configuration)\$(NVer)\</NBin>
2324
<NObj>$(NRoot)\obj\$(Configuration)\$(NVer)\</NObj>
2425
<!--Path to boot compiler.-->
2526
<NBoot>$(NBin)\boot\</NBoot>
2627
<!-- Project Constants -->
2728
<NProjectConstants Condition="'$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5'">RUNTIME_MS</NProjectConstants>
28-
<NProjectConstants Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">RUNTIME_MS;NET_4_0</NProjectConstants>
29+
<NProjectConstants Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">RUNTIME_MS;NET_4_0</NProjectConstants>
2930
<NProjectConstants Condition="'$(Configuration)' == 'Debug'">$(NProjectConstants);DEBUG</NProjectConstants>
3031
<NDefineProjectConstants>DefineConstants=$(NProjectConstants)</NDefineProjectConstants>
3132
</PropertyGroup>
@@ -80,12 +81,12 @@
8081
</ItemGroup>
8182

8283
<!--Projects related to Nemerle.Async -->
83-
<ItemGroup Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">
84+
<ItemGroup Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">
8485
<NAsync Include="$(NRoot)\snippets\Nemerle.Async\Nemerle.Async\Nemerle.Async.nproj" />
8586
<NAsync Include="$(NRoot)\snippets\Nemerle.Async\Nemerle.Async.Macros\Nemerle.Async.Macros.nproj" />
8687
</ItemGroup>
8788

88-
<ItemGroup Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">
89+
<ItemGroup Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">
8990
<NStatechart Include="$(NRoot)\snippets\Nemerle.Statechart\Nemerle.Statechart.nproj" />
9091
<NStatechart Include="$(NRoot)\snippets\Nemerle.Statechart\Nemerle.Statechart.Analyser\Nemerle.Statechart.Analyser.nproj" />
9192
<NStatechart Include="$(NRoot)\snippets\Nemerle.Statechart\Nemerle.Statechart.Generator\Nemerle.Statechart.Generator.nproj" />
@@ -152,26 +153,32 @@
152153
<NIntegrationProject Include="$(NRoot)\snippets\VS2010\Nemerle.Compiler.Utils\Nemerle.Compiler.Utils-VS-2012.csproj" />
153154
<NIntegrationProject Include="$(NRoot)\snippets\VS2010\Nemerle.VisualStudio\Nemerle.VisualStudio-VS-2012.csproj" />
154155
</ItemGroup>
156+
157+
<ItemGroup Condition="'$(TargetFrameworkVersion)' == 'v4.5.1'">
158+
<NIntegrationProject Include="$(NRoot)\snippets\VS2010\WpfHint\WpfHint.csproj" />
159+
<NIntegrationProject Include="$(NRoot)\snippets\VS2010\Nemerle.Compiler.Utils\Nemerle.Compiler.Utils-VS-2013.csproj" />
160+
<NIntegrationProject Include="$(NRoot)\snippets\VS2010\Nemerle.VisualStudio\Nemerle.VisualStudio-VS-2013.csproj" />
161+
</ItemGroup>
155162

156163
<!--Initialize FX and SDK tools locations-->
157164
<Target Name="InitTools">
158165
<GetFrameworkPath>
159-
<Output Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'" TaskParameter="FrameworkVersion40Path" PropertyName="FW40" />
166+
<Output Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'" TaskParameter="FrameworkVersion40Path" PropertyName="FW40" />
160167
<Output Condition="'$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5'" TaskParameter="FrameworkVersion35Path" PropertyName="FW35" />
161168
<Output Condition="'$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5'" TaskParameter="FrameworkVersion20Path" PropertyName="FW20" />
162169
</GetFrameworkPath>
163170
<GetFrameworkSdkPath>
164171
<Output Condition="'$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5'" TaskParameter="Path" PropertyName="SDK" />
165-
<Output Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'" TaskParameter="Path" PropertyName="SDK_3" />
172+
<Output Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'" TaskParameter="Path" PropertyName="SDK_3" />
166173
</GetFrameworkSdkPath>
167174
<PropertyGroup>
168175
<SDKBin Condition="'$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5'">$(SDK)\bin</SDKBin>
169-
<SDKBin Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">$(SDK_3)\bin\NETFX 4.0 Tools</SDKBin>
176+
<SDKBin Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">$(SDK_3)\bin\NETFX 4.0 Tools</SDKBin>
170177
<GacUtil>"$(SDKBin)\gacutil.exe"</GacUtil>
171178
<Ildasm>"$(SDKBin)\ildasm.exe"</Ildasm>
172179
<PEVerify>"$(SDKBin)\peverify.exe"</PEVerify>
173180
<NGen Condition="'$(TargetFrameworkVersion)' == '' Or '$(TargetFrameworkVersion)' == 'v2.0' Or '$(TargetFrameworkVersion)' == 'v3.0' Or '$(TargetFrameworkVersion)' == 'v3.5'">"$(FW20)\ngen.exe"</NGen>
174-
<NGen Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">"$(FW40)\ngen.exe"</NGen>
181+
<NGen Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">"$(FW40)\ngen.exe"</NGen>
175182
<MSBuild>$(MSBuildBinPath)\msbuild.exe</MSBuild>
176183
<Junction>$(NRoot)\ExternalDependences\junction.exe</Junction>
177184
</PropertyGroup>
@@ -408,12 +415,12 @@
408415
</Target>
409416

410417
<!--Helper target to build Nemerle.Async and test it -->
411-
<Target Name="_Async" DependsOnTargets="_AsyncTargetingPack" Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">
418+
<Target Name="_Async" DependsOnTargets="_AsyncTargetingPack" Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">
412419
<MSBuild Projects="@(NAsync)" Properties="OutputPath=$(NBin)\PowerPack\; IntermediateOutputPath=$(NObj)\PowerPack\; Nemerle=$(NCurBin); Configuration=$(Configuration); NKeysDir=$(NBin)\keys" Targets="$(NTargetName)" />
413420
</Target>
414421

415422
<!--Helper target to build Nemerle.Statechart and test it -->
416-
<Target Name="_Statechart" DependsOnTargets="_PegAndCSharp" Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5'">
423+
<Target Name="_Statechart" DependsOnTargets="_PegAndCSharp" Condition="'$(TargetFrameworkVersion)' == 'v4.0' Or '$(TargetFrameworkVersion)' == 'v4.5' Or '$(TargetFrameworkVersion)' == 'v4.5.1'">
417424
<MSBuild Projects="@(NStatechart)" Properties="OutputPath=$(NBin)\PowerPack\; IntermediateOutputPath=$(NObj)\PowerPack\; Nemerle=$(NCurBin); NemerlePowerPack=$(NBin)\PowerPack; Configuration=$(Configuration); NKeysDir=$(NBin)\keys" Targets="$(NTargetName)" />
418425
<!-- run tests -->
419426
<!--<Exec Command="&quot;$(NBin)\PowerPack\fsmtest.exe&quot;" />-->

‎misc/packages/wix/Includes/Variables.wxi

+52
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
<?define TargetFramework = ".NET v4.0" ?>
99
<?elseif $(var.NVer) = "net-4.5"?>
1010
<?define TargetFramework = ".NET v4.5" ?>
11+
<?elseif $(var.NVer) = "net-4.5.1"?>
12+
<?define TargetFramework = ".NET v4.5.1" ?>
1113
<?else?>
1214
<?error NVer must be defined ?>
1315
<?endif ?>
@@ -21,6 +23,8 @@
2123
<!--Translate net-4.5 into net-4.0-->
2224
<?if $(var.NVer) = "net-4.5" ?>
2325
<?define NProgramFilesDir="net-4.0" ?>
26+
<?elseif $(var.NVer) = "net-4.5.1"?>
27+
<?define NProgramFilesDir="net-4.0" ?>
2428
<?else?>
2529
<?define NProgramFilesDir="$(var.NVer)" ?>
2630
<?endif?>
@@ -159,6 +163,54 @@
159163
<?define Comp_VS2012ExtensionProjectTemplates_Guid = "13ff67b3-7f3d-4252-b165-4644c813b44c" ?>
160164
<?define Comp_VS2012ExtensionResources_Guid = "10d0a714-6830-433c-abce-465baa198c02" ?>
161165

166+
<?elseif $(var.NVer) = "net-4.5.1" ?>
167+
168+
169+
<?define RegKey_AssemblyFoldersEx = "Software\Microsoft\.NETFramework\v4.5.50709\AssemblyFoldersEx\Nemerle" ?>
170+
<?define RegKey_SafeImpors = "Software\Microsoft\VisualStudio\12.0\MSBuild\SafeImports" ?>
171+
172+
<?define UpgradeCode = "134a0c95-1715-45d2-b86b-5444c361b298" ?>
173+
174+
<?define RemoveProgramMenuDir_Guid = "1c1232c6-d1a0-4e46-bbe4-40db333a8ee3" ?>
175+
<?define Comp_NemerleCompiler_Guid = "1790d345-73c8-46fd-abd3-4e628adecb1f" ?>
176+
<?define Comp_NemerleMacros_Guid = "1dcab690-a2ba-4165-864b-423425d96bee" ?>
177+
<?define Comp_NemerleCompilerFrontEnd_Guid = "1f923f75-4632-4319-a958-493de5252778" ?>
178+
<?define Comp_NemerleCompilerFrontEndx86_Guid = "187ab0f6-5900-4606-a48f-4f786accb06f" ?>
179+
<?define Comp_NemerleCompilerFrontEndx64_Guid = "1ee9ab45-6fdc-497a-b567-4369e8054061" ?>
180+
<?define Comp_MSBuild_Guid = "186d3bab-9fa2-40d5-b232-4238faeccc70" ?>
181+
<?define Comp_NAnt_Guid = "1cf53aab-ee8e-479a-9196-40f1f3328bec" ?>
182+
<?define Comp_NemerleCompilerGAC_Guid = "18a9a5ab-bb79-44c0-b447-467d5b036f0e" ?>
183+
<?define Comp_NemerleMacrosGAC_Guid = "1d7393ab-356a-4fb2-9041-437b79b55047" ?>
184+
<?define Comp_NemereEvaluationGAC_Guid = "1e75d33a-171e-4b33-9dad-4c9b6c5007c1" ?>
185+
<?define Comp_Docs1_Guid = "176e1496-abfa-4525-9fd8-437bb6290ee6" ?>
186+
<?define Comp_Docs2_Guid = "19937455-4cab-4ecb-a03a-491d7dfc3bab" ?>
187+
<?define Comp_Docs3_Guid = "1ba5940b-d3f4-abf8-9502-41c3ab016b9b" ?>
188+
<?define Comp_MenuDocs_Guid = "1805188d-9984-49ab-88ff-4e0c7e3ce895" ?>
189+
<?define Comp_Nemerle_Guid = "1bb6ba5f-60aa-4eae-cbee-4c4d22bb6ae6" ?>
190+
<?define Comp_NemerleGAC_Guid = "1c82174a-e032-4bf8-a0cb-4796430b554f" ?>
191+
<?define Comp_Policy.1.2.Nemerle_Guid = "3E64D8CA-F4BC-477C-8CBF-CA69C96BBE91" ?>
192+
<?define Comp_Policy.1.2.Nemerle.Compiler_Guid = "90E3FC95-AAAB-4E40-B10D-E8B6411852A8" ?>
193+
<?define Comp_Policy.1.2.Nemerle.Macros_Guid = "9B9538DD-8E1A-408F-960A-E25537715000" ?>
194+
<?define Comp_NemerleLinqGAC_Guid = "1bffa10e-3bd2-438b-9da7-4cb0508e93ec" ?>
195+
<?define Comp_PegParser_Guid = "1eef10e8-6752-4e37-bdb0-412cbac3992b" ?>
196+
<?define Comp_WpfMacros_Guid = "1000bd95-b2bd-4a43-a3c1-4f387b32d090" ?>
197+
<?define Comp_XmlMacros_Guid = "1270ac67-dfef-400a-a40d-40b6d7cb9f8d" ?>
198+
<?define Comp_ComputationExpressions_Guid = "17976d0b-fdaa-466d-afbd-490fbcb5cb75" ?>
199+
<?define Comp_ObjectExpressions_Guid = "15906e0a-2021-4289-8e73-48e2b6c89dcb" ?>
200+
<?define Comp_AopMacros_Guid = "14414efc-8c3c-449f-b195-47d255838201" ?>
201+
<?define Comp_ActivePatterns_Guid = "12548327-d64b-4317-bfd4-4c0aac692869" ?>
202+
<?define Comp_CSharpParser_Guid = "1e4354f1-6476-4b55-9e46-42f3b5433fbe" ?>
203+
<?define Comp_TestFramework_Guid = "10BE57E2-D3C4-4F13-A82A-2691157052C9" ?>
204+
<?define Comp_Diff_Guid = "2B262AF7-E9C8-485F-A0BD-7AAE110DBA8D" ?>
205+
<?define Comp_NemerleAsync_Guid = "16f40c54-2bac-41dc-acb7-43578fdc136f" ?>
206+
<?define Comp_Statechart_Guid = "1dc9ff65-659c-435c-a637-43357886774f" ?>
207+
<?define Comp_VS2013ExtensionRoot_Guid = "1ee40ffc-7865-418a-b909-4faedf1e7054" ?>
208+
<?define Comp_VS2013ExtensionCodeSnippets_Guid = "18349933-9534-659f-ac63-4a20b2c68dcd" ?>
209+
<?define Comp_VS2013ExtensionSnippets_Guid = "14b4a8b1-f732-4a65-9178-4aa561ca4077" ?>
210+
<?define Comp_VS2013ExtensionItemTemplates_Guid = "1f6747d8-a73b-4112-6506-4e4285cb3bdf" ?>
211+
<?define Comp_VS2013ExtensionProjectTemplates_Guid = "13ff67b3-7f3d-4252-b165-4644c813b44c" ?>
212+
<?define Comp_VS2013ExtensionResources_Guid = "10d0a714-6830-433c-abce-465baa198c02" ?>
213+
162214
<?else?>
163215
<?error NVer must be defined?>
164216
<?endif ?>

‎misc/packages/wix/Sources/Product.wxs

+139-132
Original file line numberDiff line numberDiff line change
@@ -1,133 +1,140 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
3-
<?include ..\Includes\Variables.wxi ?>
4-
5-
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
6-
7-
<Product Id="$(var.ProductGuid)" UpgradeCode="$(var.UpgradeCode)"
8-
Name="$(var.ProductLongName)" Version="$(var.ProductVersion)"
9-
Language="1033" Manufacturer="$(var.Manufacturer)">
10-
11-
<Package Id="*" Compressed="yes"
12-
Description="$(var.ProductLongName) installation package"
13-
InstallerVersion="200" ShortNames="no" Manufacturer="$(var.Manufacturer)" Languages="1033" SummaryCodepage="1252" />
14-
15-
<MajorUpgrade DowngradeErrorMessage="A later version of [ProductName] is already installed. Setup will now exit." />
16-
17-
<Condition Message="An administrator must approve or install [ProductName].">
18-
Privileged
19-
</Condition>
20-
21-
<!-- Media -->
22-
<Media Id="1" Cabinet="Nemerle.cab" EmbedCab="yes" CompressionLevel="high" />
23-
24-
<!-- Icons -->
25-
<Icon Id="NemerleIcon" SourceFile="Resources/Nemerle.ico" />
26-
27-
<!-- Properties -->
28-
<Property Id="ARPPRODUCTICON" Value="NemerleIcon" />
29-
<Property Id="ARPHELPLINK" Value="http://Nemerle.org/" />
30-
<Property Id="ARPURLINFOABOUT" Value="http://Nemerle.org/" />
31-
<Property Id="ARPURLUPDATEINFO" Value="http://Nemerle.org/" />
32-
33-
<?if $(var.NVer) = "net-4.0" ?>
34-
<PropertyRef Id="VS2010DEVENV" />
35-
<?elseif $(var.NVer) = "net-4.5" ?>
36-
<PropertyRef Id="VS2012DEVENV" />
37-
<?else?>
38-
<PropertyRef Id="VS90DEVENV" />
39-
<PropertyRef Id="VS90SHELL" />
40-
<?endif?>
41-
42-
<WixVariable Id="WixUILicenseRtf" Value="../../../License.rtf" />
43-
<WixVariable Id="WixUIBannerBmp" Value="Resources/bannrbmp.bmp" />
44-
<WixVariable Id="WixUIDialogBmp" Value="Resources/dlgbmp.bmp" />
45-
46-
<!-- Root directories -->
47-
<Directory Id="TARGETDIR" Name="SourceDir">
48-
<Directory Id="ProgramMenuFolder" Name="Programs">
49-
<Directory Id="ProgramMenuDir" Name="$(var.ProductLongName)">
50-
<Component Id="RemoveProgramMenuDir" Guid="$(var.RemoveProgramMenuDir_Guid)">
51-
<Shortcut Id="InvokeRemove" Name="Uninstall $(var.ProductName)" Target="[SystemFolder]msiexec.exe" Arguments="/x [ProductCode]" Description="Uninstall" />
52-
<RemoveFolder Id="ProgramMenuDir" On="uninstall" />
53-
<RegistryValue Root="HKCU" Key="Software\$(var.ProductName)\$(var.NVer)" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
54-
</Component>
55-
</Directory>
56-
</Directory>
57-
<Directory Id="ProgramFilesFolder" Name="PFiles">
58-
<Directory Id="APPLICATIONFOLDER" Name="Nemerle">
59-
<Directory Id="Dir_Nver" Name="$(var.NProgramFilesDir)">
60-
<Directory Id="Dir_Docs" Name="Docs" />
61-
</Directory>
62-
</Directory>
63-
</Directory>
64-
</Directory>
65-
66-
<SetProperty Id="APPLICATIONFOLDER" Value="[%NemerleBinPathRoot]" Before="CostFinalize"><![CDATA[%NemerleBinPathRoot<>""]]></SetProperty>
67-
68-
<!-- Root feature -->
69-
<Feature Id="Feature_Root" Title="Nemerle" Description="Complete installation." AllowAdvertise="no" Display="expand" InstallDefault="local" Level="1" Absent="disallow">
70-
<ComponentRef Id="RemoveProgramMenuDir" />
71-
<ComponentGroupRef Id="CompGroup_NemerleRuntime" />
72-
73-
<Feature Id="Feature_Compiler" Title="Compiler and tools" Description="Nemerle Compiler (ncc.exe) and additional tools." AllowAdvertise="no" Level="1">
74-
<ComponentGroupRef Id="CompGroup_NemerleBinaries" />
75-
</Feature>
76-
77-
<Feature Id="Feature_PowerPack" Title="Power Pack!" Description="Additional macro libraries: parser generator, computation expressions macros. C# source support for Nemerle compiler. Compiler test utility." AllowAdvertise="no" Level="1">
78-
<ComponentGroupRef Id="CompGroup_PowerPack" />
79-
</Feature>
80-
81-
<Feature Id="Feature_Docs" Title="Documentation" Description="HTML and PDF files." Level="1">
82-
<ComponentGroupRef Id="CompGroup_Documentation" />
83-
</Feature>
84-
85-
<?if $(var.NVer) = "net-4.0" ?>
86-
<Feature Id="Feature_VS2010" Title="Visual Studio 2010 Integration" Description="Nemerle Project and IntelliSense for Visual Studio 2010" AllowAdvertise="no" Display="expand" InstallDefault="local" Level="0" TypicalDefault="install">
87-
<Condition Level="1">VS2010DEVENV</Condition>
88-
<ComponentGroupRef Id="CompGroup_VS2010Extension" />
89-
</Feature>
90-
<?elseif $(var.NVer) = "net-4.5" ?>
91-
<Feature Id="Feature_VS2012" Title="Visual Studio 2012 Integration" Description="Nemerle Project and IntelliSense for Visual Studio 2012" AllowAdvertise="no" Display="expand" InstallDefault="local" Level="0" TypicalDefault="install">
92-
<Condition Level="1">VS2012DEVENV</Condition>
93-
<ComponentGroupRef Id="CompGroup_VS2012Extension" />
94-
</Feature>
95-
<?else?>
96-
<Feature Id="Feature_VS2008" Title="Visual Studio 2008 Integration" Description="Nemerle Project and IntelliSense for Visual Studio 2008" AllowAdvertise="no" Display="expand" InstallDefault="local" Level="0" TypicalDefault="install">
97-
<Condition Level="1">VS90DEVENV</Condition>
98-
<Condition Level="2">NOT VS2008_STD_INSTALLED AND NOT VS2008_PRO_INSTALLED AND NOT VS2008_VSTA_INSTALLED AND NOT VS2008_VSTD_INSTALLED AND NOT VS2008_VSTT_INSTALLED AND NOT VS2008_VSTS_INSTALLED AND NOT VS2008_VSTO_INSTALLED</Condition>
99-
<ComponentGroupRef Id="CompGroup_Vs2008Common" />
100-
<ComponentGroupRef Id="CompGroup_Vs2008Plugin" />
101-
</Feature>
102-
<Feature Id="Feature_NemerleStudio2008" Title="Nemerle Studio Express Edition" Description="Nemerle Studio for Visual Studio 2008 Shell Isolated Mode" AllowAdvertise="yes" Display="expand" InstallDefault="local" Level="0" TypicalDefault="install">
103-
<Condition Level="1">VS90SHELL</Condition>
104-
<ComponentGroupRef Id="CompGroup_Vs2008Common" />
105-
<ComponentGroupRef Id="CompGroup_NemerleStudio" />
106-
</Feature>
107-
<?endif?>
108-
109-
</Feature>
110-
111-
<!-- Install Sequences -->
112-
<InstallExecuteSequence>
113-
<FindRelatedProducts Before="LaunchConditions" />
114-
</InstallExecuteSequence>
115-
116-
<InstallUISequence>
117-
<FindRelatedProducts Before="LaunchConditions" />
118-
</InstallUISequence>
119-
120-
<!-- WixUI_Advanced scaffolding (to be replaced by extension authoring) -->
121-
<Property Id="ApplicationFolderName" Value="$(var.ProductName)" />
122-
<Property Id="ALLUSERS" Value="1" />
123-
<Property Id="WixAppFolder" Value="WixPerMachineFolder" />
124-
125-
<WixVariable Id="WixUISupportPerMachine" Value="1" />
126-
<WixVariable Id="WixUISupportPerUser" Value="0" />
127-
128-
<UI>
129-
<UIRef Id="WixUI_Nemerle" />
130-
<UIRef Id="WixUI_ErrorProgressText" />
131-
</UI>
132-
</Product>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<?include ..\Includes\Variables.wxi ?>
4+
5+
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
6+
7+
<Product Id="$(var.ProductGuid)" UpgradeCode="$(var.UpgradeCode)"
8+
Name="$(var.ProductLongName)" Version="$(var.ProductVersion)"
9+
Language="1033" Manufacturer="$(var.Manufacturer)">
10+
11+
<Package Id="*" Compressed="yes"
12+
Description="$(var.ProductLongName) installation package"
13+
InstallerVersion="200" ShortNames="no" Manufacturer="$(var.Manufacturer)" Languages="1033" SummaryCodepage="1252" />
14+
15+
<MajorUpgrade DowngradeErrorMessage="A later version of [ProductName] is already installed. Setup will now exit." />
16+
17+
<Condition Message="An administrator must approve or install [ProductName].">
18+
Privileged
19+
</Condition>
20+
21+
<!-- Media -->
22+
<Media Id="1" Cabinet="Nemerle.cab" EmbedCab="yes" CompressionLevel="high" />
23+
24+
<!-- Icons -->
25+
<Icon Id="NemerleIcon" SourceFile="Resources/Nemerle.ico" />
26+
27+
<!-- Properties -->
28+
<Property Id="ARPPRODUCTICON" Value="NemerleIcon" />
29+
<Property Id="ARPHELPLINK" Value="http://Nemerle.org/" />
30+
<Property Id="ARPURLINFOABOUT" Value="http://Nemerle.org/" />
31+
<Property Id="ARPURLUPDATEINFO" Value="http://Nemerle.org/" />
32+
33+
<?if $(var.NVer) = "net-4.0" ?>
34+
<PropertyRef Id="VS2010DEVENV" />
35+
<?elseif $(var.NVer) = "net-4.5" ?>
36+
<PropertyRef Id="VS2012DEVENV" />
37+
<?elseif $(var.NVer) = "net-4.5.1" ?>
38+
<PropertyRef Id="VS2013DEVENV" />
39+
<?else?>
40+
<PropertyRef Id="VS90DEVENV" />
41+
<PropertyRef Id="VS90SHELL" />
42+
<?endif?>
43+
44+
<WixVariable Id="WixUILicenseRtf" Value="../../../License.rtf" />
45+
<WixVariable Id="WixUIBannerBmp" Value="Resources/bannrbmp.bmp" />
46+
<WixVariable Id="WixUIDialogBmp" Value="Resources/dlgbmp.bmp" />
47+
48+
<!-- Root directories -->
49+
<Directory Id="TARGETDIR" Name="SourceDir">
50+
<Directory Id="ProgramMenuFolder" Name="Programs">
51+
<Directory Id="ProgramMenuDir" Name="$(var.ProductLongName)">
52+
<Component Id="RemoveProgramMenuDir" Guid="$(var.RemoveProgramMenuDir_Guid)">
53+
<Shortcut Id="InvokeRemove" Name="Uninstall $(var.ProductName)" Target="[SystemFolder]msiexec.exe" Arguments="/x [ProductCode]" Description="Uninstall" />
54+
<RemoveFolder Id="ProgramMenuDir" On="uninstall" />
55+
<RegistryValue Root="HKCU" Key="Software\$(var.ProductName)\$(var.NVer)" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
56+
</Component>
57+
</Directory>
58+
</Directory>
59+
<Directory Id="ProgramFilesFolder" Name="PFiles">
60+
<Directory Id="APPLICATIONFOLDER" Name="Nemerle">
61+
<Directory Id="Dir_Nver" Name="$(var.NProgramFilesDir)">
62+
<Directory Id="Dir_Docs" Name="Docs" />
63+
</Directory>
64+
</Directory>
65+
</Directory>
66+
</Directory>
67+
68+
<SetProperty Id="APPLICATIONFOLDER" Value="[%NemerleBinPathRoot]" Before="CostFinalize"><![CDATA[%NemerleBinPathRoot<>""]]></SetProperty>
69+
70+
<!-- Root feature -->
71+
<Feature Id="Feature_Root" Title="Nemerle" Description="Complete installation." AllowAdvertise="no" Display="expand" InstallDefault="local" Level="1" Absent="disallow">
72+
<ComponentRef Id="RemoveProgramMenuDir" />
73+
<ComponentGroupRef Id="CompGroup_NemerleRuntime" />
74+
75+
<Feature Id="Feature_Compiler" Title="Compiler and tools" Description="Nemerle Compiler (ncc.exe) and additional tools." AllowAdvertise="no" Level="1">
76+
<ComponentGroupRef Id="CompGroup_NemerleBinaries" />
77+
</Feature>
78+
79+
<Feature Id="Feature_PowerPack" Title="Power Pack!" Description="Additional macro libraries: parser generator, computation expressions macros. C# source support for Nemerle compiler. Compiler test utility." AllowAdvertise="no" Level="1">
80+
<ComponentGroupRef Id="CompGroup_PowerPack" />
81+
</Feature>
82+
83+
<Feature Id="Feature_Docs" Title="Documentation" Description="HTML and PDF files." Level="1">
84+
<ComponentGroupRef Id="CompGroup_Documentation" />
85+
</Feature>
86+
87+
<?if $(var.NVer) = "net-4.0" ?>
88+
<Feature Id="Feature_VS2010" Title="Visual Studio 2010 Integration" Description="Nemerle Project and IntelliSense for Visual Studio 2010" AllowAdvertise="no" Display="expand" InstallDefault="local" Level="0" TypicalDefault="install">
89+
<Condition Level="1">VS2010DEVENV</Condition>
90+
<ComponentGroupRef Id="CompGroup_VS2010Extension" />
91+
</Feature>
92+
<?elseif $(var.NVer) = "net-4.5" ?>
93+
<Feature Id="Feature_VS2012" Title="Visual Studio 2012 Integration" Description="Nemerle Project and IntelliSense for Visual Studio 2012" AllowAdvertise="no" Display="expand" InstallDefault="local" Level="0" TypicalDefault="install">
94+
<Condition Level="1">VS2012DEVENV</Condition>
95+
<ComponentGroupRef Id="CompGroup_VS2012Extension" />
96+
</Feature>
97+
<?elseif $(var.NVer) = "net-4.5.1" ?>
98+
<Feature Id="Feature_VS2013" Title="Visual Studio 2013 Integration" Description="Nemerle Project and IntelliSense for Visual Studio 2013" AllowAdvertise="no" Display="expand" InstallDefault="local" Level="0" TypicalDefault="install">
99+
<Condition Level="1">VS2013DEVENV</Condition>
100+
<ComponentGroupRef Id="CompGroup_VS2013Extension" />
101+
</Feature>
102+
<?else?>
103+
<Feature Id="Feature_VS2008" Title="Visual Studio 2008 Integration" Description="Nemerle Project and IntelliSense for Visual Studio 2008" AllowAdvertise="no" Display="expand" InstallDefault="local" Level="0" TypicalDefault="install">
104+
<Condition Level="1">VS90DEVENV</Condition>
105+
<Condition Level="2">NOT VS2008_STD_INSTALLED AND NOT VS2008_PRO_INSTALLED AND NOT VS2008_VSTA_INSTALLED AND NOT VS2008_VSTD_INSTALLED AND NOT VS2008_VSTT_INSTALLED AND NOT VS2008_VSTS_INSTALLED AND NOT VS2008_VSTO_INSTALLED</Condition>
106+
<ComponentGroupRef Id="CompGroup_Vs2008Common" />
107+
<ComponentGroupRef Id="CompGroup_Vs2008Plugin" />
108+
</Feature>
109+
<Feature Id="Feature_NemerleStudio2008" Title="Nemerle Studio Express Edition" Description="Nemerle Studio for Visual Studio 2008 Shell Isolated Mode" AllowAdvertise="yes" Display="expand" InstallDefault="local" Level="0" TypicalDefault="install">
110+
<Condition Level="1">VS90SHELL</Condition>
111+
<ComponentGroupRef Id="CompGroup_Vs2008Common" />
112+
<ComponentGroupRef Id="CompGroup_NemerleStudio" />
113+
</Feature>
114+
<?endif?>
115+
116+
</Feature>
117+
118+
<!-- Install Sequences -->
119+
<InstallExecuteSequence>
120+
<FindRelatedProducts Before="LaunchConditions" />
121+
</InstallExecuteSequence>
122+
123+
<InstallUISequence>
124+
<FindRelatedProducts Before="LaunchConditions" />
125+
</InstallUISequence>
126+
127+
<!-- WixUI_Advanced scaffolding (to be replaced by extension authoring) -->
128+
<Property Id="ApplicationFolderName" Value="$(var.ProductName)" />
129+
<Property Id="ALLUSERS" Value="1" />
130+
<Property Id="WixAppFolder" Value="WixPerMachineFolder" />
131+
132+
<WixVariable Id="WixUISupportPerMachine" Value="1" />
133+
<WixVariable Id="WixUISupportPerUser" Value="0" />
134+
135+
<UI>
136+
<UIRef Id="WixUI_Nemerle" />
137+
<UIRef Id="WixUI_ErrorProgressText" />
138+
</UI>
139+
</Product>
133140
</Wix>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<?include ..\Includes\Variables.wxi ?>
4+
5+
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
6+
<Fragment>
7+
8+
<PropertyRef Id="VS2013_ROOT_FOLDER" />
9+
10+
<ComponentGroup Id="CompGroup_VS2013Extension">
11+
<ComponentRef Id="Comp_VS2013ExtensionRoot" />
12+
<ComponentRef Id="Comp_VS2013ExtensionCodeSnippets" />
13+
<ComponentRef Id="Comp_VS2013ExtensionSnippets" />
14+
<ComponentRef Id="Comp_VS2013ExtensionItemTemplates" />
15+
<ComponentRef Id="Comp_VS2013ExtensionProjectTemplates" />
16+
<ComponentRef Id="Comp_VS2013ExtensionResources" />
17+
</ComponentGroup>
18+
19+
<DirectoryRef Id="TARGETDIR">
20+
21+
<Directory Id="VS2013_ROOT_FOLDER">
22+
<Directory Id="VSCommon7Folder" Name="Common7">
23+
<Directory Id="VSIDEFolder" Name="IDE">
24+
<Directory Id="VSExtensionsFolder" Name="Extensions">
25+
<Directory Id="Dir_Nemerle" Name="$(var.ProductName)" FileSource="$(var.DistPath)\vs-plugin\">
26+
<Component Id="Comp_VS2013ExtensionRoot" DiskId="1" Guid="$(var.Comp_VS2013ExtensionRoot_Guid)">
27+
<File Id="File_vsixmanifest" Name="extension.vsixmanifest" />
28+
<File Id="File_Nemerle.Compiler.Utils.dll" Name="Nemerle.Compiler.Utils.dll" />
29+
<?if $(var.Configuration) = "Debug" ?>
30+
<File Id="File_Nemerle.Compiler.Utils.pdb" Name="Nemerle.Compiler.Utils.pdb" />
31+
<?endif?>
32+
<File Id="File_Nemerle.VisualStudio.dll" Name="Nemerle.VisualStudio.dll" />
33+
<?if $(var.Configuration) = "Debug" ?>
34+
<File Id="File_Nemerle.VisualStudio.pdb" Name="Nemerle.VisualStudio.pdb" />
35+
<?endif?>
36+
<File Id="File_Nemerle.VisualStudio.pkgdef" Name="Nemerle.VisualStudio.pkgdef" />
37+
<File Id="File_WpfHint.dll" Name="WpfHint.dll" />
38+
<?if $(var.Configuration) = "Debug" ?>
39+
<File Id="File_WpfHint.pdb" Name="WpfHint.pdb" />
40+
<?endif?>
41+
</Component>
42+
<Directory Id="Dir_CodeSnippets" Name="CodeSnippets" FileSource="$(var.DistPath)\vs-plugin\CodeSnippets">
43+
<Component Id="Comp_VS2013ExtensionCodeSnippets" DiskId="1" Guid="$(var.Comp_VS2013ExtensionCodeSnippets_Guid)">
44+
<File Id="File_SnippetsIndex.xml" Name="SnippetsIndex.xml" />
45+
</Component>
46+
<Directory Id="Dir_CodeSnippets.Snippets" Name="Snippets" FileSource="$(var.DistPath)\vs-plugin\CodeSnippets\Snippets">
47+
<Component Id="Comp_VS2013ExtensionSnippets" DiskId="1" Guid="$(var.Comp_VS2013ExtensionSnippets_Guid)">
48+
<File Id="File_class.snippet" Name="class.snippet" />
49+
<File Id="File_ctor.snippet" Name="ctor.snippet" />
50+
<File Id="File_for.snippet" Name="for.snippet" />
51+
<File Id="File_foreach.snippet" Name="foreach.snippet" />
52+
<File Id="File_if.snippet" Name="if.snippet" />
53+
<File Id="File_match.snippet" Name="match.snippet" />
54+
<File Id="File_unless.snippet" Name="unless.snippet" />
55+
<File Id="File_when.snippet" Name="when.snippet" />
56+
<File Id="File_while.snippet" Name="while.snippet" />
57+
</Component>
58+
</Directory>
59+
</Directory>
60+
<Directory Id="Dir_ItemTemplates" Name="ItemTemplates" FileSource="$(var.DistPath)\vs-plugin\ItemTemplates">
61+
<Directory Id="Dir_ItemTemplates.Nemerle" Name="Nemerle" FileSource="$(var.DistPath)\vs-plugin\ItemTemplates\Nemerle">
62+
<Component Id="Comp_VS2013ExtensionItemTemplates" DiskId="1" Guid="$(var.Comp_VS2013ExtensionItemTemplates_Guid)">
63+
<File Id="File_Class.zip" Name="Class.zip" />
64+
<File Id="File_ContentPage.zip" Name="ContentPage.zip" />
65+
<File Id="File_Form.zip" Name="Form.zip" />
66+
<File Id="File_Handler.zip" Name="Handler.zip" />
67+
<File Id="File_MacroWizard.zip" Name="MacroWizard.zip" />
68+
<File Id="File_MasterPage.zip" Name="MasterPage.zip" />
69+
<File Id="File_Module.zip" Name="Module.zip" />
70+
<File Id="File_MvcControllerItemTemplate.zip" Name="MvcControllerItemTemplate.zip" />
71+
<File Id="File_MvcViewContentPageItemTemplate.zip" Name="MvcViewContentPageItemTemplate.zip" />
72+
<File Id="File_MvcViewMasterPageItemTemplate.zip" Name="MvcViewMasterPageItemTemplate.zip" />
73+
<File Id="File_MvcViewPageItemTemplate.zip" Name="MvcViewPageItemTemplate.zip" />
74+
<File Id="File_MvcViewUserControlItemTemplate.zip" Name="MvcViewUserControlItemTemplate.zip" />
75+
<File Id="File_ResX.zip" Name="ResX.zip" />
76+
<File Id="File_Text.zip" Name="Text.zip" />
77+
<File Id="File_UserControl.zip" Name="UserControl.zip" />
78+
<File Id="File_Variant.zip" Name="Variant.zip" />
79+
<File Id="File_WebForm.zip" Name="WebForm.zip" />
80+
<File Id="File_WebService.zip" Name="WebService.zip" />
81+
<File Id="File_WebUserControl.zip" Name="WebUserControl.zip" />
82+
<File Id="File_WSClass.zip" Name="WSClass.zip" />
83+
<File Id="File_WSHandler.zip" Name="WSHandler.zip" />
84+
<File Id="File_WSWebForm.zip" Name="WSWebForm.zip" />
85+
<File Id="File_WSWebService.zip" Name="WSWebService.zip" />
86+
<File Id="File_WSWebUserControl.zip" Name="WSWebUserControl.zip" />
87+
</Component>
88+
</Directory>
89+
</Directory>
90+
<Directory Id="Dir_ProjectTemplates" Name="ProjectTemplates" FileSource="$(var.DistPath)\vs-plugin\ProjectTemplates">
91+
<Directory Id="Dir_ProjectTemplates.Nemerle" Name="Nemerle" FileSource="$(var.DistPath)\vs-plugin\ProjectTemplates\Nemerle">
92+
<Component Id="Comp_VS2013ExtensionProjectTemplates" DiskId="1" Guid="$(var.Comp_VS2013ExtensionProjectTemplates_Guid)">
93+
<File Id="File_ClassLibrary.zip" Name="ClassLibrary.zip" />
94+
<File Id="File_ConsoleApplication.zip" Name="ConsoleApplication.zip" />
95+
<File Id="File_MacroLibrary.zip" Name="MacroLibrary.zip" />
96+
<File Id="File_MvcWebApplication.zip" Name="MvcWebApplication.zip" />
97+
<File Id="File_WebApplication.zip" Name="WebApplication.zip" />
98+
<File Id="File_WebService.zip_1" Name="WebService.zip" />
99+
<File Id="File_WindowsApplication.zip" Name="WindowsApplication.zip" />
100+
<File Id="File_WSWebSite.zip" Name="WSWebSite.zip" />
101+
</Component>
102+
</Directory>
103+
</Directory>
104+
<Directory Id="Dir_Resources" Name="Resources">
105+
<Component Id="Comp_VS2013ExtensionResources" DiskId="1" Guid="$(var.Comp_VS2013ExtensionResources_Guid)">
106+
<File Id="File_Nemerle.ico" Name="Nemerle.ico" />
107+
</Component>
108+
</Directory>
109+
</Directory>
110+
</Directory>
111+
</Directory>
112+
</Directory>
113+
</Directory>
114+
115+
</DirectoryRef>
116+
117+
<CustomActionRef Id="VS2013Setup" />
118+
<FeatureRef Id="Feature_VS2013" />
119+
<InstallExecuteSequence>
120+
<Custom Action="VS2013Setup" Before="InstallFinalize"><![CDATA[&Feature_VS2013 > 1]]></Custom>
121+
</InstallExecuteSequence>
122+
123+
<UI>
124+
<ProgressText Action="VS2013Setup" Template="[1]">Updating Visual Studio 2013 registration</ProgressText>
125+
</UI>
126+
</Fragment>
127+
</Wix>

‎misc/packages/wix/nemerle.wixproj

+175-171
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.