diff options
Diffstat (limited to 'src/test/burn/TestData/WixStdBaTests/BundleA/Bundle.wxs')
-rw-r--r-- | src/test/burn/TestData/WixStdBaTests/BundleA/Bundle.wxs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/burn/TestData/WixStdBaTests/BundleA/Bundle.wxs b/src/test/burn/TestData/WixStdBaTests/BundleA/Bundle.wxs new file mode 100644 index 00000000..dded1f40 --- /dev/null +++ b/src/test/burn/TestData/WixStdBaTests/BundleA/Bundle.wxs | |||
@@ -0,0 +1,17 @@ | |||
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.Version)" UpgradeCode="$(var.UpgradeCode)" Compressed="yes" CommandLineVariables="caseSensitive"> | ||
5 | <Log Prefix="~$(var.TestGroupName)_$(var.BundleName)" /> | ||
6 | |||
7 | <Variable Name="TestGroupName" Value="$(var.TestGroupName)" /> | ||
8 | |||
9 | <BootstrapperApplication> | ||
10 | <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLicense" SuppressDowngradeFailure="yes" /> | ||
11 | </BootstrapperApplication> | ||
12 | |||
13 | <Chain> | ||
14 | <PackageGroupRef Id="BundlePackages" /> | ||
15 | </Chain> | ||
16 | </Bundle> | ||
17 | </Wix> | ||