blob: adf1ce1eb86ce777453e253f68ada4324e3a1cbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<Project Sdk="Microsoft.Build.Traversal">
<ItemGroup>
<ProjectReference Include="test\BurnUnitTest\BurnUnitTest.vcxproj" Properties="Platform=x64" BuildInParallel="false" />
<ProjectReference Include="test\BurnUnitTest\BurnUnitTest.vcxproj" Properties="Platform=x86" BuildInParallel="false" />
<ProjectReference Include="stub\stub.vcxproj" Properties="Platform=x86" />
<ProjectReference Include="stub\stub.vcxproj" Properties="Platform=x64" />
<ProjectReference Include="stub\stub.vcxproj" Properties="Platform=ARM64" />
<ProjectReference Include="stub\stub.vcxproj" Targets="PackNative" />
</ItemGroup>
</Project>
|