main
wixproj 34 lines 1.69 KB
Raw
1 <!-- 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. -->
2 <Project Sdk="WixToolset.Sdk">
3 <PropertyGroup>
4 <OutputType>Library</OutputType>
5 <BindFiles>true</BindFiles>
6 <Cultures>en-us</Cultures>
7 <InstallerPlatform>x64</InstallerPlatform>
8 </PropertyGroup>
9 <ItemGroup>
10 <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net462\win-x64" BindName="net2x64" />
11 <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net472\win-x64" BindName="net4x64" />
12 <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net6.0-windows\win-x64" BindName="dncx64" />
13 </ItemGroup>
14 <ItemGroup>
15 <ProjectReference Include="..\..\..\TestBA\TestBA_x64.csproj" />
16 <!-- An alternative to the above line is to explicitly reference projects with
17 the required target framework. Since we want all target frameworks built,
18 the above line is shorter.
19 <ProjectReference Include="..\..\..\TestBA\TestBA_x64.csproj">
20 <SetTargetFramework>TargetFramework=net462</SetTargetFramework>
21 </ProjectReference>
22 <ProjectReference Include="..\..\..\TestBA\TestBA_x64.csproj">
23 <SetTargetFramework>TargetFramework=net5.0-windows</SetTargetFramework>
24 </ProjectReference>
25 -->
26
27 <ProjectReference Include="..\..\..\TestExe\TestExe_x64.csproj" />
28 <ProjectReference Include="..\..\..\WixToolset.WixBA\WixToolset.WixBA_x64.csproj" />
29 </ItemGroup>
30 <ItemGroup>
31 <PackageReference Include="WixToolset.BootstrapperApplications.wixext" />
32 <PackageReference Include="WixToolset.Netfx.wixext" />
33 </ItemGroup>
34 </Project>