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