aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/TestData/BundlePackageTests/BundlePackageUninstallFailureBundle/BundlePackageUninstallFailureBundle.wxs
blob: 1e27161c2e29d1fe895c2b8aeaa9c31f996d7b8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!-- 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">
  <Fragment>
    <Variable Name="FAILWHENDEFERRED" bal:Overridable="yes" />

    <PackageGroup Id="BundlePackages">
      <MsiPackage Id="PackageFail" SourceFile="$(var.PackageFail.TargetPath)">
        <MsiProperty Name="WIXFAILWHENDEFERRED" Value="[FAILWHENDEFERRED]" />
      </MsiPackage>
      <BundlePackage Id="PackageA" SourceFile="$(var.BundleA.TargetPath)" />
    </PackageGroup>
  </Fragment>
</Wix>