blob: b3c0f4fd1f1c40d54a9893b5143b38afc23a9238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!-- 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>
<InstallerPlatform>arm64</InstallerPlatform>
<BA>hyperlinkLicense</BA>
<UpgradeCode>{94C9641C-8105-4E87-BC46-D21636F76949}</UpgradeCode>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\Templates\Bundle.wxs" Link="Bundle.wxs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PackageA_arm64\PackageA_arm64.wixproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WixToolset.BootstrapperApplications.wixext" />
</ItemGroup>
</Project>
|