main
wixproj 33 lines 1.54 KB
Raw
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="WixToolset.Sdk">
5 <PropertyGroup>
6 <OutputType>Library</OutputType>
7 <BindFiles>true</BindFiles>
8 </PropertyGroup>
9
10 <ItemGroup>
11 <BindPath Include="$(PkgMicrosoft_NET_Tools_NETCoreCheck_x86)\win-x86" BindName='x86' />
12 <BindPath Include="$(PkgMicrosoft_NET_Tools_NETCoreCheck_x64)\win-x64" BindName='x64' />
13 <BindPath Include="$(PkgMicrosoft_NET_Tools_NETCoreCheck_arm64)\win-arm64" BindName='arm64' />
14 </ItemGroup>
15
16 <ItemGroup>
17 <ProjectReference Include="..\be\netfxbe.vcxproj" Platforms="arm64,x86,x64" />
18 <ProjectReference Include="..\ca\netfxca.vcxproj" Platforms="arm64,x86,x64" />
19 <ProjectReference Include="..\netcoresearch\netcoresearch.vcxproj" Platforms="arm64,x86,x64" />
20 </ItemGroup>
21
22 <ItemGroup>
23 <PackageReference Include="WixToolset.BootstrapperApplications.wixext" />
24 <PackageReference Include="WixToolset.Util.wixext" />
25 </ItemGroup>
26
27 <ItemGroup>
28 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
29 <PackageReference Include="Microsoft.NET.Tools.NETCoreCheck.x86" GeneratePathProperty="true" />
30 <PackageReference Include="Microsoft.NET.Tools.NETCoreCheck.x64" GeneratePathProperty="true" />
31 <PackageReference Include="Microsoft.NET.Tools.NETCoreCheck.arm64" GeneratePathProperty="true" />
32 </ItemGroup>
33 </Project>