aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/MultiFileBundle.wxs
blob: 48f53ae34648e4fdb2ef958bfd235041dda27ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
  <Bundle Name="!(loc.BundleName)" Version="!(bind.packageVersion.test.msi)" Manufacturer="Example Corporation" UpgradeCode="047730a5-30fe-4a62-a520-da9381b8226a">
    <BootstrapperApplicationRef Id="fakeba">
      <PayloadGroupRef Id="TestPayloadGroup" />
    </BootstrapperApplicationRef>
    <Chain>
      <MsiPackage SourceFile="test.msi">
        <MsiProperty Name="TEST" Value="1" />
      </MsiPackage>
    </Chain>
  </Bundle>
  <Fragment>
    <PayloadGroup Id="TestPayloadGroup">
      <Payload SourceFile="MsiPackage\test.txt" />
    </PayloadGroup>
  </Fragment>
</Wix>