diff options
Diffstat (limited to 'src/test/burn/TestData/WixStdBaTests/BalCondition/BalCondition.wxs')
-rw-r--r-- | src/test/burn/TestData/WixStdBaTests/BalCondition/BalCondition.wxs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/test/burn/TestData/WixStdBaTests/BalCondition/BalCondition.wxs b/src/test/burn/TestData/WixStdBaTests/BalCondition/BalCondition.wxs new file mode 100644 index 00000000..e3c36df7 --- /dev/null +++ b/src/test/burn/TestData/WixStdBaTests/BalCondition/BalCondition.wxs | |||
@@ -0,0 +1,18 @@ | |||
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"> | ||
5 | <Log Prefix="~$(var.TestGroupName)_$(var.BundleName)" /> | ||
6 | |||
7 | <BootstrapperApplication> | ||
8 | <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLargeLicense" SuppressOptionsUI="yes" SuppressDowngradeFailure="yes" /> | ||
9 | </BootstrapperApplication> | ||
10 | |||
11 | <bal:Condition Condition="1" Message="This is a first condition that we need to meet" /> | ||
12 | <bal:Condition Condition="1" Message="This is a second condition that we need to meet with a longer message" /> | ||
13 | |||
14 | <Chain> | ||
15 | <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)" /> | ||
16 | </Chain> | ||
17 | </Bundle> | ||
18 | </Wix> | ||