aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/SimpleBundle/Bundle.wxs
blob: 21749c07a86132136449ee6276e110d60d604629 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<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">
    <BootstrapperApplication>
      <BootstrapperApplicationDll SourceFile="fakeba.dll" />
    </BootstrapperApplication>
    <Chain>
      <MsiPackage SourceFile="test.msi">
        <MsiProperty Name="TEST" Value="1" />
      </MsiPackage>
    </Chain>
  </Bundle>
</Wix>