| 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 | <BootstrapperApplication Id="customHyperlinkLicense"> |
| 7 | <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLicense" ThemeFile="CustomHyperlinkTheme.xml" /> |
| 8 | <Payload SourceFile="$(var.BafThmUtilTesting.TargetPath)" bal:BAFunctions="yes" /> |
| 9 | </BootstrapperApplication> |
| 10 | <PackageGroup Id="BundlePackages"> |
| 11 | <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)"> |
| 12 | <MsiProperty Name="FORCERESTARTCA" Value="[FORCERESTARTCA]" /> |
| 13 | </MsiPackage> |
| 14 | <ExePackage Id="ExeA" Cache="remove" PerMachine="yes" |
| 15 | DetectCondition="" Permanent="yes" InstallArguments="/ec [EXEEXITCODE]"> |
| 16 | <PayloadGroupRef Id="TestExePayloads" /> |
| 17 | </ExePackage> |
| 18 | </PackageGroup> |
| 19 | <Variable Name="EXEEXITCODE" bal:Overridable="yes" Value="0" /> |
| 20 | <Variable Name="FORCERESTARTCA" bal:Overridable="yes" /> |
| 21 | </Fragment> |
| 22 | </Wix> |