main
wxs 19 lines 836 Bytes
Raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
3 xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
4 <Bundle Name="WixIuiBa" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="{5C7B7C41-B3A9-4FFF-952A-B6D68320B9B4}">
5 <BootstrapperApplication>
6 <bal:WixInternalUIBootstrapperApplication />
7 </BootstrapperApplication>
8 <Chain>
9 <ExePackage
10 Permanent="yes"
11 DetectCondition="none"
12 SourceFile="runtimes\win-x86\native\wixnative.exe"
13 bal:PrereqPackage="yes"
14 bal:PrereqLicenseUrl="https://www.mysite.com/prereqterms"
15 />
16 <MsiPackage SourceFile="test.msi" bal:PrimaryPackageType="default" />
17 </Chain>
18 </Bundle>
19 </Wix>