| 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 | <PackageGroup Id="BundlePackages"> |
| 7 | <MsiPackage Id="PackagePerUser" SourceFile="$(var.PackagePerUser.TargetPath)" /> |
| 8 | <ExePackage Id="ExeA" Cache="remove" PerMachine="no" |
| 9 | DetectCondition="" Permanent="yes" InstallArguments="/ec [EXEEXITCODE]"> |
| 10 | <PayloadGroupRef Id="TestExePayloads" /> |
| 11 | </ExePackage> |
| 12 | </PackageGroup> |
| 13 | <Variable Name="EXEEXITCODE" bal:Overridable="yes" Value="0" /> |
| 14 | </Fragment> |
| 15 | </Wix> |