blob: 9a269aa101931fa585f659e6c7c875e08258a33f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!-- 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. -->
<Project Sdk="WixToolset.Sdk">
<PropertyGroup>
<OutputType>Bundle</OutputType>
<UpgradeCode>{7D977157-06C9-4176-A931-AC16E18AAB51}</UpgradeCode>
<DefineConstants>$(DefineConstants);TestVersion=1.1</DefineConstants>
<OutputName>WixStdBaTest1_v11</OutputName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\PackageA\PackageA.wixproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WixToolset.BootstrapperApplications.wixext" />
</ItemGroup>
</Project>
|