blob: a60943b0d3c3a1a29c4d6de0cd40d9b4b1ff9616 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
<Bundle Name="WixIuiBa" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="{5C7B7C41-B3A9-4FFF-952A-B6D68320B9B4}">
<BootstrapperApplication>
<bal:WixInternalUIBootstrapperApplication />
</BootstrapperApplication>
<Chain>
<ExePackage UninstallArguments="" DetectCondition="none" SourceFile="runtimes\win-x86\native\wixnative.exe" bal:PrereqPackage="yes" />
<MsiPackage SourceFile="test.msi" bal:PrimaryPackageType="default" />
</Chain>
</Bundle>
</Wix>
|