forked from rsdn/nemerle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NemerleAll.nproj
374 lines (346 loc) · 24.1 KB
/
NemerleAll.nproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
<Project DefaultTargets="DevBuild2Stage" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<UsingTask TaskName="MSBuild.Community.Tasks.FileUpdate" AssemblyFile="$(MSBuildProjectDirectory)\ExternalDependences\MSBuild.Community.Tasks.dll" />
<PropertyGroup Condition=" '$(NTargetName)' == '' ">
<NTargetName>Rebuild</NTargetName>
</PropertyGroup>
<PropertyGroup Condition=" '$(NInstall)' == '' ">
<!--Folder for Nemerle installation. To install use "Install" terget.-->
<NInstall Condition="'$(TargetFrameworkVersion)' != 'v4.0'">$(ProgramFiles)\Nemerle\Net-3.5</NInstall>
<NInstall Condition="'$(TargetFrameworkVersion)' == 'v4.0'">$(ProgramFiles)\Nemerle\Net-4.0</NInstall>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<!--Path to root directory of Nemerle sources.-->
<NRoot>$(MSBuildProjectDirectory)</NRoot>
<NVer Condition="'$(TargetFrameworkVersion)' != 'v4.0'">net-3.5</NVer>
<NVer Condition="'$(TargetFrameworkVersion)' == 'v4.0'">net-4.0</NVer>
<!-- Original boot -->
<NRootBoot Condition="'$(TargetFrameworkVersion)' != 'v4.0'">$(NRoot)\boot\</NRootBoot>
<NRootBoot Condition="'$(TargetFrameworkVersion)' == 'v4.0'">$(NRoot)\boot-4.0\</NRootBoot>
<!--Path to stages output directory (including current configuration subfolder).-->
<NBin>$(NRoot)\bin\$(Configuration)\$(NVer)\</NBin>
<NObj>$(NRoot)\obj\$(Configuration)\$(NVer)\</NObj>
<!--Path to boot compiler.-->
<NBoot>$(NBin)\boot\</NBoot>
<!-- Project Constants -->
<NProjectConstants Condition="'$(TargetFrameworkVersion)' != 'v4.0'">RUNTIME_MS</NProjectConstants>
<NProjectConstants Condition="'$(TargetFrameworkVersion)' == 'v4.0'">RUNTIME_MS;NET_4_0</NProjectConstants>
<NProjectConstants Condition="'$(Configuration)' == 'Debug'">$(NProjectConstants);DEBUG</NProjectConstants>
<NDefineProjectConstants>DefineConstants=$(NProjectConstants)</NDefineProjectConstants>
</PropertyGroup>
<!--Project required to build any Nemerle project (.nproj)-->
<ItemGroup>
<NTasksProject Include="$(NRoot)\Nemerle.MSBuild.Tasks.csproj" />
</ItemGroup>
<ItemGroup>
<CSharpCompilerFiles Include ="$(NBin)\PowerPack\CSharpParser.dll;$(NBin)\PowerPack\ncc.parser.csharp.dll;$(NBin)\PowerPack\Nemerle.Peg.dll"/>
</ItemGroup>
<!--Projects related only to compiler.-->
<ItemGroup>
<NCompilerProject Include="$(NRoot)\Nemerle.nproj" />
<NCompilerProject Include="$(NRoot)\Nemerle.Compiler.nproj" />
<NCompilerProject Include="$(NRoot)\Nemerle.Macros.nproj" />
<NCompilerProject Include="$(NRoot)\ncc.nproj" />
<NCompilerProject Include="$(NRoot)\ncc32.nproj" />
<NCompilerProject Include="$(NRoot)\ncc64.nproj" Condition="'$(PROCESSOR_ARCHITECTURE)' == 'AMD64' Or '$(PROCESSOR_ARCHITEW6432)' == 'AMD64'" />
</ItemGroup>
<!--Projects related to Nemerle.Peg-->
<ItemGroup>
<NPeg Include="$(NRoot)\snippets\peg-parser\Nemerle.Peg\Nemerle.Peg.nproj" />
<NPeg Include="$(NRoot)\snippets\peg-parser\Nemerle.Peg.Macros\Nemerle.Peg.Macros.nproj" />
</ItemGroup>
<!--Projects related to C# parser-->
<ItemGroup>
<NCSharp Include="$(NRoot)\snippets\csharp-parser\CSharpParser\CSharpParser.nproj" />
<NCSharp Include="$(NRoot)\snippets\csharp-parser\CSharpToNemerle\CSharpToNemerle.nproj" />
<NCSharp Include="$(NRoot)\snippets\csharp-parser\CSharpParser.TestMacros\CSharpParser.TestMacros.nproj" />
<NCSharp Include="$(NRoot)\snippets\csharp-parser\CSharpParser.Tests\CSharpParser.Tests.nproj" />
</ItemGroup>
<!--Projects related to ComputationExpressions -->
<ItemGroup>
<NComputationExpressions Include="$(NRoot)\snippets\ComputationExpressions\ComputationExpressions\ComputationExpressions.nproj" />
<NComputationExpressions Include="$(NRoot)\snippets\ComputationExpressions\ComputationExpressions.Macros\ComputationExpressions.Macros.nproj" />
<NComputationExpressions Include="$(NRoot)\snippets\ComputationExpressions\Test\Test.nproj" />
</ItemGroup>
<!--Projects related to PowerPack-->
<ItemGroup>
<NPowerPack Include="$(NRoot)\snippets\Nemerle.Xml\Nemerle.Xml.Macro\Nemerle.Xml.Macro.nproj" />
<NPowerPack Include="$(NRoot)\snippets\Nemerle.WPF\Nemerle.WPF\Nemerle.WPF.nproj" />
<NPowerPack Include="$(NRoot)\snippets\ObjectExpressions\NewObjectMacro\NewObjectMacro.nproj" />
<NPowerPack Include="$(NRoot)\snippets\aop\DevMacros.nproj" />
<NPowerPack Include="$(NRoot)\snippets\aop\Nemerle.Aop.nproj" />
<NPowerPack Include="$(NRoot)\snippets\ActivePatterns\ActivePatterns\Nemerle.ActivePatterns.nproj" />
</ItemGroup>
<!--Projects related to Linq-->
<ItemGroup>
<NLinq Include="$(NRoot)\Linq\Macro\Linq.nproj" />
</ItemGroup>
<ItemGroup>
<CompilerTestsFiles Include="$(NBin)\Tests\**\*.*" />
</ItemGroup>
<!--Projects related to tools-->
<ItemGroup>
<NTools Condition=" '$(Configuration)' != 'Debug' " Include="$(NRoot)\tools\nemish.nproj" />
<NTools Condition=" '$(Configuration)' != 'Debug' " Include="$(NRoot)\tools\Nemerle.Evaluation.nproj" />
<NTools Condition=" '$(Configuration)' != 'Debug' " Include="$(NRoot)\tools\Nemerle.NAnt.Tasks.nproj" />
<NTools Condition=" '$(Configuration)' != 'Debug' " Include="$(NRoot)\tools\reflector-addon\reflector-addon.nproj" />
</ItemGroup>
<!--Projects related to integration-->
<ItemGroup Condition="'$(TargetFrameworkVersion)' != 'v4.0'">
<NIntegrationProject Include="$(NRoot)\VsIntegration\ComInteropHelper\ComInteropHelper.csproj" />
<NIntegrationProject Include="$(NRoot)\VsIntegration\Nemerle.VisualStudio\GUI\WpfHint\WpfHint.csproj" />
<NIntegrationProject Include="$(NRoot)\VsIntegration\Nemerle.Compiler.Utils\Nemerle.Compiler.Utils.csproj" />
<NIntegrationProject Include="$(NRoot)\VsIntegration\Nemerle.VisualStudio\Nemerle.VisualStudio.csproj" />
<NIntegrationProject Include="$(NRoot)\VsIntegration\Nemerle.VsIntegration.Tests\Nemerle.VsIntegration.Tests.csproj" />
<NIntegrationProject Include="$(NRoot)\VsIntegration\Nemerle.Compiler.Utils.Tests\Nemerle.Compiler.Utils.Tests.csproj" />
<NIntegrationProject Condition=" '$(Configuration)' != 'Debug' " Include="$(NRoot)\VsIntegration\Shell\NemerleStudio\NemerleStudio.vcproj" />
<NIntegrationProject Condition=" '$(Configuration)' != 'Debug' " Include="$(NRoot)\VsIntegration\Shell\NemerleStudioUI\NemerleStudioUI.vcproj" />
<NIntegrationProject Condition=" '$(Configuration)' != 'Debug' " Include="$(NRoot)\tools\Nemerle.Evaluation.nproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFrameworkVersion)' == 'v4.0'">
<NIntegrationProject Include="$(NRoot)\snippets\VS2010\WpfHint\WpfHint.csproj" />
<NIntegrationProject Include="$(NRoot)\snippets\VS2010\Nemerle.Compiler.Utils\Nemerle.Compiler.Utils.csproj" />
<NIntegrationProject Include="$(NRoot)\snippets\VS2010\Nemerle.VisualStudio\Nemerle.VisualStudio.csproj" />
</ItemGroup>
<!--Initialize FX and SDK tools locations-->
<Target Name="InitTools">
<GetFrameworkPath>
<Output Condition="'$(TargetFrameworkVersion)' == 'v4.0'" TaskParameter="FrameworkVersion40Path" PropertyName="FW40" />
<Output Condition="'$(TargetFrameworkVersion)' != 'v4.0'" TaskParameter="FrameworkVersion35Path" PropertyName="FW35" />
<Output Condition="'$(TargetFrameworkVersion)' != 'v4.0'" TaskParameter="FrameworkVersion20Path" PropertyName="FW20" />
</GetFrameworkPath>
<GetFrameworkSdkPath>
<Output Condition="'$(TargetFrameworkVersion)' != 'v4.0'" TaskParameter="Path" PropertyName="SDK" />
<Output Condition="'$(TargetFrameworkVersion)' == 'v4.0'" TaskParameter="Path" PropertyName="SDK_3" />
</GetFrameworkSdkPath>
<PropertyGroup>
<SDKBin Condition="'$(TargetFrameworkVersion)' != 'v4.0'">$(SDK)\bin</SDKBin>
<SDKBin Condition="'$(TargetFrameworkVersion)' == 'v4.0'">$(SDK_3)\bin\NETFX 4.0 Tools</SDKBin>
<GacUtil>"$(SDKBin)\gacutil.exe"</GacUtil>
<Ildasm>"$(SDKBin)\ildasm.exe"</Ildasm>
<PEVerify>"$(SDKBin)\peverify.exe"</PEVerify>
<NGen Condition="'$(TargetFrameworkVersion)' != 'v4.0'">"$(FW20)\ngen.exe"</NGen>
<NGen Condition="'$(TargetFrameworkVersion)' == 'v4.0'">"$(FW40)\ngen.exe"</NGen>
<MSBuild>$(MSBuildBinPath)\msbuild.exe</MSBuild>
<Junction>$(NRoot)\ExternalDependences\junction.exe</Junction>
</PropertyGroup>
<Message Text="Framework tools found at:" Importance="high" />
<Message Text=" MSBuild - $(MSBuild)" Importance="high" />
<Message Text=" NGen - $(NGen)" Importance="high" />
<Message Text=" SDK tools found at:" Importance="high" />
<Message Text=" GacUtil - $(GacUtil)" Importance="high" />
<Message Text=" Ildasm - $(Ildasm)" Importance="high" />
<Message Text=" PEVerify - $(PEVerify)" Importance="high" />
<Message Text=" ExternalDependences:" Importance="high" />
<Message Text=" Junction - $(Junction)" Importance="high" />
</Target>
<!--Builds and deploy tasks dll into boot directory-->
<Target Name="NTasks" DependsOnTargets="InitTools">
<MSBuild Projects="@(NTasksProject)" Properties="OutputPath=$(NBoot); IntermediateOutputPath=$(NObj)\Tasks\; NKeysDir=$(NBin)\keys" Targets="$(NTargetName)" />
<CreateItem Include="$(NBoot)\Nemerle.MSBuild.Tasks.dll">
<Output ItemName="NTasksFiles" TaskParameter="Include" />
</CreateItem>
<CreateItem Include="$(NBoot)\Nemerle.MSBuild.targets">
<Output ItemName="NTasksFiles" TaskParameter="Include" />
</CreateItem>
</Target>
<!--Boot files-->
<Target Name="NPrepareBoot">
<CreateItem Include="$(NRootBoot)\*.exe">
<Output ItemName="NBootFiles" TaskParameter="Include" />
</CreateItem>
<CreateItem Include="$(NRootBoot)\*.dll">
<Output ItemName="NBootFiles" TaskParameter="Include" />
</CreateItem>
<Copy SourceFiles="@(NBootFiles)" DestinationFolder="$(NBoot)" />
</Target>
<!--Keys-->
<Target Name="NPrepareKeys">
<CreateItem Include="$(NRoot)\misc\keys\*.snk">
<Output ItemName="NKeyFiles" TaskParameter="Include"/>
</CreateItem>
<Copy SourceFiles="@(NKeyFiles)" DestinationFolder="$(NBin)\keys" />
</Target>
<!--Builds compiler using boot-->
<Target Name="Stage1" DependsOnTargets="NPrepareKeys;NPrepareBoot;NTasks">
<PropertyGroup>
<NPrevBin>$(NBoot)</NPrevBin>
<NCurBin>$(NBin)\Stage1\</NCurBin>
<NCurObj>$(NObj)\Stage1\</NCurObj>
</PropertyGroup>
<MSBuild Projects="@(NCompilerProject)" Properties="OutputPath=$(NCurBin); IntermediateOutputPath=$(NCurObj)\; $(NDefineProjectConstants); Nemerle=$(NPrevBin); NKeysDir=$(NBin)\keys" Targets="$(NTargetName)" />
<Copy SourceFiles="@(NTasksFiles)" DestinationFolder="$(NCurBin)" />
</Target>
<!--Builds compiler using Stage1-->
<Target Name="Stage2" DependsOnTargets="Stage1">
<PropertyGroup>
<NPrevBin>$(NBin)\Stage1\</NPrevBin>
<NCurBin>$(NBin)\Stage2\</NCurBin>
<NCurObj>$(NObj)\Stage2\</NCurObj>
</PropertyGroup>
<MSBuild Projects="@(NCompilerProject)" Properties="OutputPath=$(NCurBin); IntermediateOutputPath=$(NCurObj)\; $(NDefineProjectConstants); Nemerle=$(NPrevBin); NKeysDir=$(NBin)\keys" Targets="$(NTargetName)" />
<Copy SourceFiles="@(NTasksFiles)" DestinationFolder="$(NCurBin)" />
</Target>
<!--Builds compiler using Stage2-->
<Target Name="Stage3" DependsOnTargets="Stage2">
<PropertyGroup>
<NPrevBin>$(NBin)\Stage2\</NPrevBin>
<NCurBin>$(NBin)\Stage3\</NCurBin>
<NCurObj>$(NObj)\Stage3\</NCurObj>
</PropertyGroup>
<MSBuild Projects="@(NCompilerProject)" Properties="OutputPath=$(NCurBin); IntermediateOutputPath=$(NCurObj)\; $(NDefineProjectConstants); Nemerle=$(NPrevBin); NKeysDir=$(NBin)\keys" Targets="$(NTargetName)" />
<Copy SourceFiles="@(NTasksFiles)" DestinationFolder="$(NCurBin)" />
</Target>
<!--Builds compiler using Stage3-->
<Target Name="Stage4" DependsOnTargets="Stage3">
<PropertyGroup>
<NPrevBin>$(NBin)\Stage3\</NPrevBin>
<NCurBin>$(NBin)\Stage4\</NCurBin>
<NCurObj>$(NObj)\Stage4\</NCurObj>
</PropertyGroup>
<MSBuild Projects="@(NCompilerProject)" Properties="OutputPath=$(NCurBin); IntermediateOutputPath=$(NCurObj)\; $(NDefineProjectConstants); Nemerle=$(NPrevBin); NKeysDir=$(NBin)\keys" Targets="$(NTargetName)" />
<Copy SourceFiles="@(NTasksFiles)" DestinationFolder="$(NCurBin)" />
</Target>
<!--Builds only PowerPack using Stage1 compiler.-->
<Target Name="PowerPack" DependsOnTargets="Stage1; _PowerPack" />
<!--Builds all tools, linq, vs integration and shell. Only Stage1 compiler required.-->
<Target Name="IntegrationFast" DependsOnTargets="Stage1; _Integration" />
<!--Builds all tools, linq, vs integration and shell. Stage4 compiler required.-->
<Target Name="IntegrationFull" DependsOnTargets="Stage4; Validate; CompilerTests; _Integration; IdeEngineTests" />
<!--Builds MSI package. Only Stage1 compiler required.-->
<Target Name="InstallerFast" DependsOnTargets="IntegrationFast; _PowerPack; _Installer" />
<!--Builds MSI package. Stage4 compiler required.-->
<Target Name="InstallerFull" DependsOnTargets="IntegrationFull; _PowerPack; _Installer" />
<!--Compare last two stages on IL level-->
<Target Name="Validate" DependsOnTargets="InitTools">
<ItemGroup>
<Asm2 Include="$(NPrevBin)\*.dll" />
<Asm2 Include="$(NPrevBin)\*.exe" />
<Asm3 Include="$(NCurBin)\*.dll" />
<Asm3 Include="$(NCurBin)\*.exe" />
</ItemGroup>
<Exec Command="$(Ildasm) %(Asm2.FullPath) /output:%(Asm2.FullPath).il /nobar" WorkingDirectory="$(NPrevBin)" />
<Exec Command="$(Ildasm) %(Asm3.FullPath) /output:%(Asm3.FullPath).il /nobar" WorkingDirectory="$(NCurBin)" />
<ItemGroup>
<IL_PREV Include="$(NPrevBin)\*.il" />
<IL_LAST Include="$(NCurBin)\*.il" />
</ItemGroup>
<MSBuild.Community.Tasks.FileUpdate Files="@(IL_PREV)" Regex="^(//.*)(?=\r)" ReplacementText="// REPLACED" Multiline="True" />
<MSBuild.Community.Tasks.FileUpdate Files="@(IL_LAST)" Regex="^(//.*)(?=\r)" ReplacementText="// REPLACED" Multiline="True" />
<Exec Command="fc $(NPrevBin)\*.il $(NCurBin)\*.il" />
<Exec Command="$(PEVerify) %(Asm3.FullPath)" ContinueOnError="False" />
<Delete Files="@(IL_PREV)" />
<Delete Files="@(IL_LAST)" />
</Target>
<!--Runs compiler tests.-->
<Target Name="CompilerTests" DependsOnTargets="Linq;_PegAndCSharp">
<!--Delete Files="@(CompilerTestsFiles)" / DONT WORK WITH READONLY FILES!-->
<Exec Command="IF EXIST $(NBin)\Tests\ DEL $(NBin)\Tests\ /F /S /Q" WorkingDirectory="$(NBin)\" />
<Copy SourceFiles="$(NBin)\Linq\Nemerle.Linq.dll;@(CSharpCompilerFiles)" DestinationFolder="$(NBin)\Tests\positive" />
<Copy SourceFiles="$(NBin)\Linq\Nemerle.Linq.dll;@(CSharpCompilerFiles)" DestinationFolder="$(NBin)\Tests\negative" />
<!--Build tester positive-->
<MSBuild Projects="$(NRoot)\Tests.nproj" Properties="Nemerle=$(NCurBin); Configuration=$(Configuration); IntermediateOutputPath=$(NObj)\Tests\positive\; NTestOutPath=$(NBin)\Tests\positive\" />
<!--Build tester negative-->
<MSBuild Projects="$(NRoot)\Tests.nproj" Properties="Nemerle=$(NCurBin); Configuration=$(Configuration); IntermediateOutputPath=$(NObj)\Tests\negative\; NTestOutPath=$(NBin)\Tests\negative\" />
<!--Delete all temporary files in old testing directory-->
<CreateItem Include="$(NRoot)\ncc\testsuite\*.exe;$(NRoot)\ncc\testsuite\*.dll;$(NRoot)\ncc\testsuite\*.pdb">
<Output ItemName="NTestSuiteTempFiles" TaskParameter="Include"/>
</CreateItem>
<Delete Files="@(NTestSuiteTempFiles)" />
<!--Copy test files to the testing directory-->
<CreateItem Include="$(NRoot)\ncc\testsuite\*.*">
<Output ItemName="NTestSuiteFiles" TaskParameter="Include" />
</CreateItem>
<Copy SourceFiles="@(NTestSuiteFiles)" DestinationFolder="$(NBin)\Tests\positive" />
<Copy SourceFiles="@(NTestSuiteFiles)" DestinationFolder="$(NBin)\Tests\negative" />
<!--Run positive tests-->
<Exec Command="$(NBin)\Tests\positive\Tests.exe -d:$(NRoot)\ncc\testsuite\positive -p "-nowarn:10003 -def:$(NProjectConstants)" -s" WorkingDirectory="$(NBin)\Tests\positive" />
<!--Run negative tests-->
<Exec Command="$(NBin)\Tests\negative\Tests.exe -d:$(NRoot)\ncc\testsuite\negative -p "-nowarn:10003 -def:$(NProjectConstants)" -s" WorkingDirectory="$(NBin)\Tests\negative" />
</Target>
<!--Install Nemerle compiler to specified folder. By default to ProgramFiles. To override folder set NInstall property.-->
<Target Name="Install" DependsOnTargets="InitTools">
<Error Condition=" '$(NCurBin)' == '' " Text="Property NCurBin is not set. Any stage of compilation should preceed the Install target." />
<!--Path which should contane binary filese to be installed-->
<!--PropertyGroup Condition=" '$(NCurBin)' == '' ">
<NCurBin>$(NBin)\Stage1</NCurBin>
</PropertyGroup-->
<Message Importance="high" Text="Install binaries from: '$(NCurBin)'" />
<ItemGroup>
<FilesToCopyToProgFiles Include="$(NBin)\PowerPack\*.*" Exclude="$(NBin)\PowerPack\Nemerle.dll;$(NBin)\PowerPack\Nemerle.pdb;$(NBin)\PowerPack\Nemerle.xml;$(NBin)\PowerPack\Nemerle.Compiler.dll;$(NBin)\PowerPack\Nemerle.Compiler.pdb;$(NBin)\PowerPack\Nemerle.Compiler.xml" />
<FilesToCopyToProgFiles Include="$(NBin)\Linq\*.*" Exclude="$(NBin)\PowerPack\Nemerle.dll;$(NBin)\PowerPack\Nemerle.pdb;$(NBin)\PowerPack\Nemerle.xml;$(NBin)\PowerPack\Nemerle.Compiler.dll;$(NBin)\PowerPack\Nemerle.Compiler.pdb;$(NBin)\PowerPack\Nemerle.Compiler.xml" />
<FilesToCopyToProgFiles Include="$(NBin)\VsIntegration\*.*" />
<FilesToCopyToProgFiles Include="$(NCurBin)\*.*" />
</ItemGroup>
<Copy SourceFiles="@(FilesToCopyToProgFiles)" DestinationFolder="$(NInstall)" />
<!--Copy SourceFiles="$(NRoot)\tools\msbuild-task\Nemerle.MSBuild.targets" DestinationFolder="$(NInstall)" /-->
<ItemGroup>
<FilesToRegInProgFiles Include="$(NInstall)\Nemerle.dll" />
<FilesToRegInProgFiles Include="$(NInstall)\Nemerle.Compiler.dll" />
<FilesToRegInProgFiles Include="$(NInstall)\Nemerle.Macros.dll" />
<FilesToRegInProgFiles Include="$(NInstall)\Nemerle.MSBuild.Tasks.dll" />
<FilesToRegInProgFiles Include="$(NInstall)\ncc.exe" />
</ItemGroup>
<!--<Exec Command="$(GacUtil) /u %(FilesToRegInProgFiles.Filename)" IgnoreExitCode="True" WorkingDirectory="$(NInstall)" ContinueOnError="True" />
<Exec Command="$(NGen) uninstall "%(FilesToRegInProgFiles.FullPath)"" WorkingDirectory="$(NInstall)" IgnoreExitCode="True" ContinueOnError="True" />
<Exec Command="$(NGen) install "%(FilesToRegInProgFiles.FullPath)"" WorkingDirectory="$(NInstall)" />-->
<PropertyGroup>
<TargetLocation>"$(NInstall)\Nemerle.MSBuild.targets"</TargetLocation>
</PropertyGroup>
<Exec Command="reg.exe add HKLM\SOFTWARE\Microsoft\VisualStudio\9.0\MSBuild\SafeImports /v NemerleTarget /d $(TargetLocation) /f" StdOutEncoding="Windows-1251" />
<Exec Command="reg.exe add HKCU\Software\Microsoft\VisualStudio\9.0\Configuration\MSBuild\SafeImports /v NemerleTarget /d $(TargetLocation) /f" StdOutEncoding="Windows-1251" />
<Exec Command="reg.exe add HKCU\Software\Microsoft\VisualStudio\9.0Exp\Configuration\MSBuild\SafeImports /v NemerleTarget /d $(TargetLocation) /f" StdOutEncoding="Windows-1251" />
<Exec Command="$(Junction) "$(ProgramW6432)\Nemerle" "$(ProgramFiles(x86))\Nemerle"" Condition="'$(ProgramW6432)' != '' " IgnoreExitCode="true" />
</Target>
<Target Name="IdeEngineTests" Condition="'$(TargetFrameworkVersion)' != 'v4.0'">
<!--DependsOnTargets="IntegrationFull"-->
<!--Run NUnit-tests for Nemerle.Compiler.Utils.dll (Engine Extentions of compiler engine)-->
<Exec Command=""$(NRoot)\ExternalDependences\nunit-console.exe" /nologo "$(NBin)\VsIntegration\Nemerle.Compiler.Utils.Tests.dll" /xml="$(NBin)\VsIntegration\TestResult.xml"" />
</Target>
<!--Helper target to build integration-->
<Target Name="_Integration" DependsOnTargets="Linq;Tools">
<MSBuild Projects="@(NIntegrationProject)" Properties="OutputPath=$(NBin)\VsIntegration\; Nemerle=$(NCurBin); Configuration=$(Configuration); BaseIntermediateOutputPath=$(NObj)\VsIntegration\; IntermediateOutputPath=$(NObj)\VsIntegration\; NKeysDir=$(NBin)\keys" Targets="$(NTargetName)" />
</Target>
<Target Name="Linq">
<MSBuild Projects="@(NLinq)" Properties="OutputPath=$(NBin)\Linq\; IntermediateOutputPath=$(NObj)\Linq\; Nemerle=$(NCurBin); $(NDefineProjectConstants); Configuration=$(Configuration); NKeysDir=$(NBin)\keys" Targets="$(NTargetName)" />
</Target>
<Target Name="Tools">
<MSBuild Projects="@(NTools)" Properties="OutputPath=$(NBin)\Tools\; IntermediateOutputPath=$(NObj)\Tools\; Nemerle=$(NCurBin); $(NDefineProjectConstants); Configuration=$(Configuration); NKeysDir=$(NBin)\keys" Targets="$(NTargetName)" />
</Target>
<!--Helper target to build PEG, C# parser, and test it -->
<Target Name="_PegAndCSharp">
<MSBuild Projects="@(NPeg)" Properties="OutputPath=$(NBin)\PowerPack\; IntermediateOutputPath=$(NObj)\PowerPack\; Nemerle=$(NCurBin); Configuration=$(Configuration)" Targets="$(NTargetName)" />
<MSBuild Projects="@(NCSharp)" Properties="OutputPath=$(NBin)\PowerPack\; IntermediateOutputPath=$(NObj)\PowerPack\; Nemerle=$(NCurBin); Configuration=$(Configuration)" Targets="$(NTargetName)" />
<!-- run tests -->
<Exec Command=""$(NBin)\PowerPack\CSharpParser.Tests.exe"" />
</Target>
<!--Helper target to build ComputationExpressions and test it -->
<Target Name="_ComputationExpressions">
<MSBuild Projects="@(NComputationExpressions)" Properties="OutputPath=$(NBin)\PowerPack\; IntermediateOutputPath=$(NObj)\PowerPack\; Nemerle=$(NCurBin); Configuration=$(Configuration)" Targets="$(NTargetName)" />
<!-- run tests -->
<Exec Command=""$(NBin)\PowerPack\ComputationExpressions.Tests.exe"" />
</Target>
<!--Helper target to build power pack-->
<Target Name="_PowerPack" DependsOnTargets="_PegAndCSharp; _ComputationExpressions">
<MSBuild Projects="@(NPowerPack)" Properties="OutputPath=$(NBin)\PowerPack\; IntermediateOutputPath=$(NObj)\PowerPack\; Nemerle=$(NCurBin); Configuration=$(Configuration)" Targets="$(NTargetName)" />
</Target>
<Target Name="DevBuildQuickNccOnly" DependsOnTargets="Stage1; Install" />
<Target Name="DevBuildQuick" DependsOnTargets="Stage1; _Integration; _PowerPack; Linq; Install" />
<Target Name="DevBuildQuickWithTests" DependsOnTargets="Stage1; CompilerTests; _Integration; IdeEngineTests; Install" />
<Target Name="DevBuild2Stage" DependsOnTargets="Stage2; _Integration; Install" />
<Target Name="DevBuild2StageWithTests" DependsOnTargets="Stage2; CompilerTests; _Integration; IdeEngineTests; Install" />
<Target Name="DevBuildFull" DependsOnTargets="Stage4; Validate; CompilerTests; _Integration; IdeEngineTests; _PowerPack; Install" />
<!--Helper target to build installer.-->
<Target Name="_Installer" Condition=" '$(Configuration)' != 'Debug' ">
<PropertyGroup>
<NCurBin Condition=" '$(NCurBin)' == '' ">$(NBin)\Stage1</NCurBin>
</PropertyGroup>
<GetAssemblyIdentity AssemblyFiles="$(NCurBin)\Nemerle.dll">
<Output TaskParameter="Assemblies" ItemName="AssemblyVersion" />
</GetAssemblyIdentity>
<PropertyGroup>
<ActualVersion>%(AssemblyVersion.Version)</ActualVersion>
</PropertyGroup>
<MSBuild Projects="$(NRoot)\misc\packages\wix\nemerle.sln" Targets="$(NTargetName)" Properties="OutputPath=$(NBin)\Installer\; IntermediateOutputPath=$(NObj)\Installer\; Nemerle=$(NCurBin); Configuration=$(Configuration); NVer=$(NVer); ActualVersion=$(ActualVersion)" />
</Target>
</Project>