diff options
Diffstat (limited to 'src/api/burn/burn_t.proj')
-rw-r--r-- | src/api/burn/burn_t.proj | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/api/burn/burn_t.proj b/src/api/burn/burn_t.proj new file mode 100644 index 00000000..46ccf8b2 --- /dev/null +++ b/src/api/burn/burn_t.proj | |||
@@ -0,0 +1,34 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | |||
4 | <Project Sdk="Microsoft.Build.Traversal"> | ||
5 | <ItemGroup> | ||
6 | <!-- Restore: Explicitly restore the test projects, which need some hand-holding. --> | ||
7 | <ProjectReference Include="test\BalUtilUnitTest\BalUtilUnitTest.vcxproj" Targets="Restore" BuildInParallel="false" /> | ||
8 | <ProjectReference Include="test\BextUtilUnitTest\BextUtilUnitTest.vcxproj" Targets="Restore" BuildInParallel="false" /> | ||
9 | |||
10 | <!-- Build --> | ||
11 | |||
12 | <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x86" /> | ||
13 | <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=x64" /> | ||
14 | <ProjectReference Include="bextutil\bextutil.vcxproj" Properties="Platform=ARM64" /> | ||
15 | |||
16 | <!-- Let mbanative build balutil for latest toolset. --> | ||
17 | <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x86" /> | ||
18 | <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=x64" /> | ||
19 | <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=ARM64" /> | ||
20 | |||
21 | <ProjectReference Include="WixToolset.Mba.Core\WixToolset.Mba.Core.csproj" Properties="Platform=AnyCPU" /> | ||
22 | <ProjectReference Include="test\WixToolsetTest.Mba.Core\WixToolsetTest.Mba.Core.csproj" Properties="Platform=AnyCPU" /> | ||
23 | |||
24 | <!-- Test --> | ||
25 | <ProjectReference Include="test\BalUtilUnitTest\BalUtilUnitTest.vcxproj" Targets="Test" /> | ||
26 | <ProjectReference Include="test\BextUtilUnitTest\BextUtilUnitTest.vcxproj" Targets="Test" /> | ||
27 | |||
28 | <!-- Pack --> | ||
29 | <ProjectReference Include="balutil\balutil.vcxproj" Targets="PackNative" /> | ||
30 | <ProjectReference Include="bextutil\bextutil.vcxproj" Targets="PackNative" /> | ||
31 | <ProjectReference Include="WixToolset.BootstrapperCore.Native\WixToolset.BootstrapperCore.Native.proj" Targets="Restore;PackNative" /> | ||
32 | <ProjectReference Include="WixToolset.Mba.Core\WixToolset.Mba.Core.csproj" Properties="NoBuild=true" Targets="Pack" /> | ||
33 | </ItemGroup> | ||
34 | </Project> | ||