summaryrefslogtreecommitdiff
path: root/src/test/burn/TestData/Manual/BundleA/BundleA.wxs
blob: 20b68a916cd5be831fb82b35dcac42dfc7d3ea76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- 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>
    <BootstrapperApplication Id="customHyperlinkLicense">
      <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLicense" ThemeFile="CustomHyperlinkTheme.xml" />
      <Payload SourceFile="$(var.BafThmUtilTesting.TargetPath)" bal:BAFunctions="yes" />
    </BootstrapperApplication>
    <PackageGroup Id="BundlePackages">
      <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)">
        <MsiProperty Name="FORCERESTARTCA" Value="[FORCERESTARTCA]" />
      </MsiPackage>
      <ExePackage Id="ExeA" Cache="remove" PerMachine="yes"
                  DetectCondition="" Permanent="yes" InstallArguments="/ec [EXEEXITCODE]">
        <PayloadGroupRef Id="TestExePayloads" />
      </ExePackage>
    </PackageGroup>
    <Variable Name="EXEEXITCODE" bal:Overridable="yes" Value="0" />
    <Variable Name="FORCERESTARTCA" bal:Overridable="yes" />
  </Fragment>
</Wix>