| 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 | |
| 4 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> |
| 5 | <Fragment> |
| 6 | <Variable Name="FAILWHENDEFERRED" bal:Overridable="yes" /> |
| 7 | |
| 8 | <PackageGroup Id="BundlePackages"> |
| 9 | <MsiPackage Id="PackageFail" SourceFile="$(var.PackageFail.TargetPath)"> |
| 10 | <MsiProperty Name="WIXFAILWHENDEFERRED" Value="[FAILWHENDEFERRED]" /> |
| 11 | </MsiPackage> |
| 12 | <BundlePackage Id="PackageA" SourceFile="$(var.BundleA.TargetPath)" /> |
| 13 | </PackageGroup> |
| 14 | </Fragment> |
| 15 | </Wix> |