| 1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> |
| 2 | |
| 3 | <?ifndef TestVersion?> |
| 4 | <?define TestVersion = 1.0.0.0?> |
| 5 | <?endif?> |
| 6 | |
| 7 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> |
| 8 | <Bundle Name="~$(var.TestGroupName) - $(var.BundleName)" Version="$(var.TestVersion)" UpgradeCode="$(var.UpgradeCode)" Compressed="yes"> |
| 9 | <!-- Update should be the only thing different from the template --> |
| 10 | <Update Location="$(var.WebServerBaseUrl)BundleB/feed" /> |
| 11 | |
| 12 | <Log Prefix="~$(var.TestGroupName)_$(var.BundleName)" /> |
| 13 | |
| 14 | <Variable Name="TestGroupName" Value="$(var.TestGroupName)" /> |
| 15 | |
| 16 | <?ifdef SoftwareTag?> |
| 17 | <SoftwareTag Regid="regid.1995-08.com.example" InstallPath="[CommonAppDataFolder]regid.1995-08.com.example" /> |
| 18 | <?endif?> |
| 19 | |
| 20 | <?ifndef BA?> |
| 21 | <!-- pulled in through the PackageGroupRef below --> |
| 22 | <?elseif $(var.BA) = "TestBAdnc"?> |
| 23 | <!-- pulled in through the PackageGroupRef below --> |
| 24 | <?elseif $(var.BA) = "hyperlinkLicense"?> |
| 25 | <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLicense" /> |
| 26 | <?else?> |
| 27 | <BootstrapperApplicationRef Id="$(var.BA)" /> |
| 28 | <?endif?> |
| 29 | |
| 30 | <Chain> |
| 31 | <?ifndef BA?> |
| 32 | <PackageGroupRef Id="TestBA" /> |
| 33 | <?elseif $(var.BA) = "TestBAdnc"?> |
| 34 | <PackageGroupRef Id="TestBAdnc" /> |
| 35 | <?endif?> |
| 36 | |
| 37 | <PackageGroupRef Id="BundlePackages" /> |
| 38 | </Chain> |
| 39 | </Bundle> |
| 40 | </Wix> |