aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/TestData/ConfigurableScopeTests/PerMachineBundle/Bundle.wxs
blob: eb2a74ac32f549380edfff59168930ad6d8f4a1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
  <Bundle Id="PerMachineBundle" Name="PerMachineBundle" Manufacturer="Acme" Version="$(Version)">
    <BootstrapperApplication>
      <bal:WixStandardBootstrapperApplication LicenseUrl="https://www.example.com/license" Theme="hyperlinkLicense" />
    </BootstrapperApplication>

    <Variable Name="TestBundleId" Value="PerMachineBundle v$(Version)" />

    <Chain>
      <MsiPackage SourceFile="PerMachinePkg.msi" />
    </Chain>
  </Bundle>
</Wix>