main
wxs 18 lines 1.02 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">
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>