main
wxs 23 lines 1.05 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
3 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
4 <Bundle Name="~$(var.TestGroupName) - $(var.BundleName)" Version="$(var.TestVersion)" UpgradeCode="$(var.UpgradeCode)" Compressed="yes" bal:CommandLineVariables="caseSensitive">
5 <Log Prefix="~$(var.TestGroupName)_$(var.BundleName)" />
6
7 <?ifndef UpdateFeed ?>
8 <?define UpdateFeed = "http://wixtoolset.org/releases/feed/v3.14" ?>
9 <?endif?>
10
11 <Update Location='$(UpdateFeed)' />
12
13 <Variable Name="TestGroupName" Value="$(var.TestGroupName)" />
14
15 <BootstrapperApplication>
16 <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLargeLicense" SuppressOptionsUI="yes" SuppressDowngradeFailure="yes" />
17 </BootstrapperApplication>
18
19 <Chain>
20 <PackageGroupRef Id="BundlePackages" />
21 </Chain>
22 </Bundle>
23 </Wix>