1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<Project
3
- DefaultTargets =" Restore;Build "
3
+ DefaultTargets =" Packaging "
4
4
xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
5
- <PropertyGroup >
6
- <SolutionPath >$(MSBuildThisFileDirectory)*.sln</SolutionPath >
7
- </PropertyGroup >
8
- <ItemGroup >
9
- <ProjectReference Include =" $(SolutionPath)" >
10
- <AdditionalProperties >Configuration=Debug;Platform=x86</AdditionalProperties >
11
- </ProjectReference >
12
- <ProjectReference Include =" $(SolutionPath)" >
13
- <AdditionalProperties >Configuration=Release;Platform=x86</AdditionalProperties >
14
- </ProjectReference >
15
- <ProjectReference Include =" $(SolutionPath)" >
16
- <AdditionalProperties >Configuration=Debug;Platform=x64</AdditionalProperties >
17
- </ProjectReference >
18
- <ProjectReference Include =" $(SolutionPath)" >
19
- <AdditionalProperties >Configuration=Release;Platform=x64</AdditionalProperties >
20
- </ProjectReference >
21
- <ProjectReference Include =" $(SolutionPath)" >
22
- <AdditionalProperties >Configuration=Debug;Platform=ARM64</AdditionalProperties >
23
- </ProjectReference >
24
- <ProjectReference Include =" $(SolutionPath)" >
25
- <AdditionalProperties >Configuration=Release;Platform=ARM64</AdditionalProperties >
26
- </ProjectReference >
27
- </ItemGroup >
28
- <ItemGroup >
29
- <!-- <PackagingProjectReference Include="$(MSBuildThisFileDirectory)Mile.Project.Windows\Mile.Project.NuGetPackaging.proj">
30
- <AdditionalProperties>NuspecFile=$(MSBuildThisFileDirectory)SampleProject\SampleProject.nuspec</AdditionalProperties>
31
- </PackagingProjectReference> -->
32
- </ItemGroup >
33
- <Target Name =" Restore" >
5
+ <Target Name =" Packaging" >
34
6
<MSBuild
35
- Projects =" @(ProjectReference) "
36
- Targets =" Restore"
7
+ Projects =" $(MSBuildThisFileDirectory)Mile.Project.Windows\Mile.Project.NuGetPackaging.proj "
8
+ Targets =" Restore;Build "
37
9
StopOnFirstFailure =" True"
38
- Properties =" PreferredToolArchitecture=x64" />
39
- <MSBuild
40
- Projects =" @(PackagingProjectReference)"
41
- Targets =" Restore"
42
- StopOnFirstFailure =" True"
43
- Properties =" PreferredToolArchitecture=x64" />
44
- </Target >
45
- <Target Name =" Build" >
46
- <MSBuild
47
- Projects =" @(ProjectReference)"
48
- Targets =" Build"
49
- BuildInParallel =" True"
50
- StopOnFirstFailure =" True"
51
- Properties =" PreferredToolArchitecture=x64" />
52
- <MSBuild
53
- Projects =" @(PackagingProjectReference)"
54
- Targets =" Build"
55
- StopOnFirstFailure =" True"
56
- Properties =" PreferredToolArchitecture=x64" />
57
- </Target >
58
- <Target Name =" Rebuild" >
59
- <MSBuild
60
- Projects =" @(ProjectReference)"
61
- Targets =" Rebuild"
62
- BuildInParallel =" True"
63
- StopOnFirstFailure =" True"
64
- Properties =" PreferredToolArchitecture=x64" />
65
- <MSBuild
66
- Projects =" @(PackagingProjectReference)"
67
- Targets =" Rebuild"
68
- StopOnFirstFailure =" True"
69
- Properties =" PreferredToolArchitecture=x64" />
10
+ Properties =" PreferredToolArchitecture=x64;NuspecFile=$(MSBuildThisFileDirectory)Mint.NuGet\Mint.nuspec" />
70
11
</Target >
71
12
</Project >
0 commit comments