blob: 0c68908c8d9cc69ee83cae6e7775e2028bd25b75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?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
Permanent="yes"
DetectCondition="none"
SourceFile="runtimes\win-x86\native\wixnative.exe"
bal:PrereqPackage="yes"
bal:PrereqLicenseUrl="https://www.mysite.com/prereqterms"
/>
<MsiPackage SourceFile="test.msi" bal:PrimaryPackageType="default" />
</Chain>
</Bundle>
</Wix>
|