blob: 755c2351aa49a2418a2b9bd415108ce6fff06052 (
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. -->
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
<Bundle Name="~$(var.TestGroupName) - $(var.BundleName)" Version="$(var.TestVersion)" UpgradeCode="$(var.UpgradeCode)" Compressed="yes">
<Log Prefix="~$(var.TestGroupName)_$(var.BundleName)" />
<BootstrapperApplication>
<bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLargeLicense" SuppressOptionsUI="yes" SuppressDowngradeFailure="yes" />
</BootstrapperApplication>
<bal:Condition Condition="1" Message="This is a first condition that we need to meet" />
<bal:Condition Condition="1" Message="This is a second condition that we need to meet with a longer message" />
<Chain>
<MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)" />
</Chain>
</Bundle>
</Wix>
|