blob: 70e84690ea6e52b4db525caf808300ab0fdf8d71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
<Bundle Id="PuPmouBundle$(BA)" Name="PuPmouBundle$(BA)" Manufacturer="Acme" Version="1.0.0.0">
<?if $(BA) = "WixStdBA"?>
<BootstrapperApplication>
<bal:WixStandardBootstrapperApplication LicenseUrl="https://www.example.com/license" Theme="hyperlinkLicense" />
</BootstrapperApplication>
<?endif?>
<Variable Name="TestGroupName" Value="ConfigurableScopeTests" />
<Chain>
<?if $(BA) = "TestBA"?>
<PackageGroupRef Id="TestBA" />
<?endif?>
<MsiPackage SourceFile="PmouPkg1.msi" />
<MsiPackage SourceFile="PmouPkg2.msi" />
<MsiPackage SourceFile="PerUserPkg.msi" />
</Chain>
</Bundle>
</Wix>
|