main
wixproj 22 lines 1.1 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 </PropertyGroup>
8 <ItemGroup>
9 <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net462\win-x86" BindName="net2x86" />
10 <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net472\win-x86" BindName="net4x86" />
11 <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net6.0-windows\win-x86" BindName="dncx86" />
12 </ItemGroup>
13 <ItemGroup>
14 <ProjectReference Include="..\..\..\TestBA\TestBA.csproj" />
15 <ProjectReference Include="..\..\..\TestExe\TestExe.csproj" />
16 <ProjectReference Include="..\..\..\WixToolset.WixBA\WixToolset.WixBA.csproj" />
17 </ItemGroup>
18 <ItemGroup>
19 <PackageReference Include="WixToolset.BootstrapperApplications.wixext" />
20 <PackageReference Include="WixToolset.Netfx.wixext" />
21 </ItemGroup>
22 </Project>