aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/TestData/FailureTests/BundleB/Bundle.wxs
blob: 578413a9feb81b79192be81b5514ce358ad6939b (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
25
26
<!-- 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. -->

<?ifndef TestVersion?>
<?define TestVersion = 1.0.0.0?>
<?endif?>

<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)" />

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

    <!-- ParallelCache="yes" should be the only thing different from the template -->
    <Chain ParallelCache="yes">
      <PackageGroupRef Id="TestBA" />

      <PackageGroupRef Id="BundlePackages" />
    </Chain>
  </Bundle>
  <Fragment>
    <PackageGroup Id="BundlePackages">
      <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)" />
      <MsiPackage Id="PackageB" SourceFile="$(var.PackageB.TargetPath)" />
    </PackageGroup>
  </Fragment>
</Wix>