diff options
Diffstat (limited to 'src/test/burn/TestData/Manual/BundleB/Bundle.wxs')
-rw-r--r-- | src/test/burn/TestData/Manual/BundleB/Bundle.wxs | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/test/burn/TestData/Manual/BundleB/Bundle.wxs b/src/test/burn/TestData/Manual/BundleB/Bundle.wxs new file mode 100644 index 00000000..615d4b1d --- /dev/null +++ b/src/test/burn/TestData/Manual/BundleB/Bundle.wxs | |||
@@ -0,0 +1,56 @@ | |||
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 Version?> | ||
4 | <?define Version = 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 | <!-- The only difference from the template should be the SplashScreen --> | ||
9 | <Bundle Name="~$(var.TestGroupName) - $(var.BundleName)" Version="$(var.Version)" UpgradeCode="$(var.UpgradeCode)" Compressed="yes" SplashScreenSourceFile="..\BafThmutilTesting\theme\star_transparent.bmp"> | ||
10 | <Log Prefix="~$(var.TestGroupName)_$(var.BundleName)" /> | ||
11 | |||
12 | <Variable Name="TestGroupName" Value="$(var.TestGroupName)" /> | ||
13 | |||
14 | <?ifdef SoftwareTag?> | ||
15 | <SoftwareTag Regid="regid.1995-08.com.example" InstallPath="[CommonAppDataFolder]regid.1995-08.com.example" /> | ||
16 | <?endif?> | ||
17 | |||
18 | <?ifndef BA?> | ||
19 | <!-- pulled in through the PackageGroupRef below --> | ||
20 | <?elseif $(var.BA) = "TestBAdnc"?> | ||
21 | <!-- pulled in through the PackageGroupRef below --> | ||
22 | <?elseif $(var.BA) = "TestBA_x64"?> | ||
23 | <!-- pulled in through the PackageGroupRef below --> | ||
24 | <?elseif $(var.BA) = "TestBAdnc_x64"?> | ||
25 | <!-- pulled in through the PackageGroupRef below --> | ||
26 | <?elseif $(var.BA) = "WixBA"?> | ||
27 | <!-- pulled in through the PackageGroupRef below --> | ||
28 | <?elseif $(var.BA) = "WixBAdnc_x64"?> | ||
29 | <!-- pulled in through the PackageGroupRef below --> | ||
30 | <?elseif $(var.BA) = "hyperlinkLicense"?> | ||
31 | <BootstrapperApplication> | ||
32 | <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLicense" /> | ||
33 | </BootstrapperApplication> | ||
34 | <?else?> | ||
35 | <BootstrapperApplicationRef Id="$(var.BA)" /> | ||
36 | <?endif?> | ||
37 | |||
38 | <Chain> | ||
39 | <?ifndef BA?> | ||
40 | <PackageGroupRef Id="TestBA" /> | ||
41 | <?elseif $(var.BA) = "TestBAdnc"?> | ||
42 | <PackageGroupRef Id="TestBAdnc" /> | ||
43 | <?elseif $(var.BA) = "TestBA_x64"?> | ||
44 | <PackageGroupRef Id="TestBA_x64" /> | ||
45 | <?elseif $(var.BA) = "TestBAdnc_x64"?> | ||
46 | <PackageGroupRef Id="TestBAdnc_x64" /> | ||
47 | <?elseif $(var.BA) = "WixBA"?> | ||
48 | <PackageGroupRef Id="WixBA" /> | ||
49 | <?elseif $(var.BA) = "WixBAdnc_x64"?> | ||
50 | <PackageGroupRef Id="WixBAdnc_x64" /> | ||
51 | <?endif?> | ||
52 | |||
53 | <PackageGroupRef Id="BundlePackages" /> | ||
54 | </Chain> | ||
55 | </Bundle> | ||
56 | </Wix> | ||