-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathBuildAllTargets.proj
34 lines (34 loc) · 1.3 KB
/
BuildAllTargets.proj
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
<?xml version="1.0" encoding="utf-8"?>
<Project
DefaultTargets="Restore;Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="Restore">
<ItemGroup>
<ProjectReference Include="$(MSBuildThisFileDirectory)NanaGet.sln">
<AdditionalProperties>Configuration=Debug;Platform=x64</AdditionalProperties>
</ProjectReference>
<ProjectReference Include="$(MSBuildThisFileDirectory)NanaGet.sln">
<AdditionalProperties>Configuration=Release;Platform=x64</AdditionalProperties>
</ProjectReference>
</ItemGroup>
<MSBuild
Projects="@(ProjectReference)"
Targets="Restore"
StopOnFirstFailure="True"
Properties="PreferredToolArchitecture=x64" />
</Target>
<Target Name="Build">
<MSBuild
Projects="$(MSBuildThisFileDirectory)NanaGetPackage\NanaGetPackage.wapproj"
Targets="Build"
BuildInParallel="True"
StopOnFirstFailure="True"
Properties="PreferredToolArchitecture=x64;Configuration=Debug;Platform=x64" />
<MSBuild
Projects="$(MSBuildThisFileDirectory)NanaGetPackage\NanaGetPackage.wapproj"
Targets="Build"
BuildInParallel="True"
StopOnFirstFailure="True"
Properties="PreferredToolArchitecture=x64;Configuration=Release;Platform=x64" />
</Target>
</Project>