diff options
Diffstat (limited to 'src/api/burn')
-rw-r--r-- | src/api/burn/balutil/balutil.nuspec | 4 | ||||
-rw-r--r-- | src/api/burn/burn.proj | 40 |
2 files changed, 42 insertions, 2 deletions
diff --git a/src/api/burn/balutil/balutil.nuspec b/src/api/burn/balutil/balutil.nuspec index 82509140..2474b2ea 100644 --- a/src/api/burn/balutil/balutil.nuspec +++ b/src/api/burn/balutil/balutil.nuspec | |||
@@ -20,11 +20,11 @@ | |||
20 | <files> | 20 | <files> |
21 | <file src="$projectFolder$\build\$id$.props" target="build\" /> | 21 | <file src="$projectFolder$\build\$id$.props" target="build\" /> |
22 | <file src="$projectFolder$\inc\*" target="build\native\include" /> | 22 | <file src="$projectFolder$\inc\*" target="build\native\include" /> |
23 | <!-- <file src="..\..\v140\x86\balutil.lib" target="build\native\v140\x86" /> | 23 | <file src="..\..\v140\x86\balutil.lib" target="build\native\v140\x86" /> |
24 | <file src="..\..\v140\x64\balutil.lib" target="build\native\v140\x64" /> | 24 | <file src="..\..\v140\x64\balutil.lib" target="build\native\v140\x64" /> |
25 | <file src="..\..\v141\x86\balutil.lib" target="build\native\v141\x86" /> | 25 | <file src="..\..\v141\x86\balutil.lib" target="build\native\v141\x86" /> |
26 | <file src="..\..\v141\x64\balutil.lib" target="build\native\v141\x64" /> | 26 | <file src="..\..\v141\x64\balutil.lib" target="build\native\v141\x64" /> |
27 | <file src="..\..\v141\ARM64\balutil.lib" target="build\native\v141\ARM64" /> --> | 27 | <file src="..\..\v141\ARM64\balutil.lib" target="build\native\v141\ARM64" /> |
28 | <file src="..\..\v142\x86\balutil.lib" target="build\native\v142\x86" /> | 28 | <file src="..\..\v142\x86\balutil.lib" target="build\native\v142\x86" /> |
29 | <file src="..\..\v142\x64\balutil.lib" target="build\native\v142\x64" /> | 29 | <file src="..\..\v142\x64\balutil.lib" target="build\native\v142\x64" /> |
30 | <file src="..\..\v142\ARM64\balutil.lib" target="build\native\v142\ARM64" /> | 30 | <file src="..\..\v142\ARM64\balutil.lib" target="build\native\v142\ARM64" /> |
diff --git a/src/api/burn/burn.proj b/src/api/burn/burn.proj new file mode 100644 index 00000000..6020efa2 --- /dev/null +++ b/src/api/burn/burn.proj | |||
@@ -0,0 +1,40 @@ | |||
1 | <Project Sdk="Microsoft.Build.Traversal/3.0.23"> | ||
2 | <ItemGroup> | ||
3 | <!-- Restore: Explicitly restore the test projects, which need some hand-holding. --> | ||
4 | <ProjectReference Include="test\BalUtilUnitTest\BalUtilUnitTest.vcxproj" Targets="Restore" BuildInParallel="false" /> | ||
5 | <ProjectReference Include="test\BextUtilUnitTest\BextUtilUnitTest.vcxproj" Targets="Restore" BuildInParallel="false" /> | ||
6 | |||
7 | <!-- Build --> | ||
8 | |||
9 | <!-- Let bextutil build balutil. --> | ||
10 | <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x86;PlatformToolset=v140" /> | ||
11 | <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x64;PlatformToolset=v140" /> | ||
12 | <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x86;PlatformToolset=v141" /> | ||
13 | <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x64;PlatformToolset=v141" /> | ||
14 | <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=ARM64;PlatformToolset=v141" /> | ||
15 | <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x86" /> | ||
16 | <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x64" /> | ||
17 | <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=ARM64" /> | ||
18 | |||
19 | <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x86;PlatformToolset=v140" /> | ||
20 | <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x64;PlatformToolset=v140" /> | ||
21 | <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x86;PlatformToolset=v141" /> | ||
22 | <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x64;PlatformToolset=v141" /> | ||
23 | <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=ARM64;PlatformToolset=v141" /> | ||
24 | <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x86" /> | ||
25 | <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x64" /> | ||
26 | <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=ARM64" /> | ||
27 | |||
28 | <ProjectReference Include="WixToolset.Mba.Core\WixToolset.Mba.Core.csproj" Properties="Platform=AnyCPU" /> | ||
29 | |||
30 | <!-- Test --> | ||
31 | <ProjectReference Include="test\BalUtilUnitTest\BalUtilUnitTest.vcxproj" Targets="Test" /> | ||
32 | <ProjectReference Include="test\BextUtilUnitTest\BextUtilUnitTest.vcxproj" Targets="Test" /> | ||
33 | |||
34 | <!-- Pack --> | ||
35 | <ProjectReference Include="balutil\balutil.vcxproj" Targets="PackNative" /> | ||
36 | <ProjectReference Include="bextutil\bextutil.vcxproj" Targets="PackNative" /> | ||
37 | <ProjectReference Include="WixToolset.BootstrapperCore.Native\WixToolset.BootstrapperCore.Native.proj" Targets="Restore;PackNative" /> | ||
38 | <ProjectReference Include="WixToolset.Mba.Core\WixToolset.Mba.Core.csproj" Properties="NoBuild=true" Targets="Pack" /> | ||
39 | </ItemGroup> | ||
40 | </Project> | ||