aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/TestData/WixStdBaTests/BundleA/Bundle.wxs
blob: 78bda7683d7535192790c4aa65c14ea1cc0910ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!-- 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)"
          IconSourceFile="test.ico" Compressed="yes" bal:CommandLineVariables="caseSensitive">
    <Log Prefix="~$(var.TestGroupName)_$(var.BundleName)" />

    <?ifndef UpdateFeed ?>
      <?define UpdateFeed = "http://wixtoolset.org/releases/feed/v3.14" ?>
    <?endif?>

    <Update Location='$(UpdateFeed)' />

    <Variable Name="TestGroupName" Value="$(var.TestGroupName)" />

    <BootstrapperApplication>
      <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLargeLicense" SuppressOptionsUI="yes" SuppressDowngradeFailure="yes" />
    </BootstrapperApplication>

    <Chain>
      <PackageGroupRef Id="BundlePackages" />
    </Chain>
  </Bundle>
</Wix>