| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Bundle Name="DiversePayloadsBundle" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="{FEF1D2B8-4737-4A2A-9F91-77F7294FB55B}"> |
| 3 | <BootstrapperApplication SourceFile="fakeba.dll" /> |
| 4 | |
| 5 | <Chain> |
| 6 | <PackageGroupRef Id="ExternalContainerPackages" /> |
| 7 | <ExePackage SourceFile="signed_bundle_engine.exe" DetectCondition="none" Permanent="yes" /> |
| 8 | <MsuPackage SourceFile="Windows8.1-KB2937592-x86.msu" DetectCondition="none" Compressed="no" DownloadUrl="http://example.com/test.msu" /> |
| 9 | <MsiPackage SourceFile="test.msi" Compressed="no" /> |
| 10 | </Chain> |
| 11 | <Container Name="External.cab"> |
| 12 | <PackageGroupRef Id="ExternalContainerPackages" /> |
| 13 | </Container> |
| 14 | </Bundle> |
| 15 | |
| 16 | <Fragment> |
| 17 | <PackageGroup Id="ExternalContainerPackages"> |
| 18 | <ExePackage SourceFile="burn.exe" DetectCondition="none" Permanent="yes"> |
| 19 | <Payload SourceFile="signed_cab1.cab" /> |
| 20 | </ExePackage> |
| 21 | </PackageGroup> |
| 22 | </Fragment> |
| 23 | </Wix> |