diff options
| author | Bob Arnson <bob@firegiant.com> | 2026-02-04 20:47:04 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2026-02-04 20:47:04 -0500 |
| commit | edccb203c421d2bd820062024088c6698424d9ee (patch) | |
| tree | 6b47c3eb5ca53bd9f79f3d032dc1a596d411bf38 /src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.wxs | |
| parent | a3d3963f806117ce123d95e8b77e73e1c1545b25 (diff) | |
| download | wix-bob/ConfigurableScopeBundles.tar.gz wix-bob/ConfigurableScopeBundles.tar.bz2 wix-bob/ConfigurableScopeBundles.zip | |
Support dual-purpose packages in Burn.bob/ConfigurableScopeBundles
Fixes https://github.com/wixtoolset/issues/issues/8958
Diffstat (limited to 'src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.wxs')
| -rw-r--r-- | src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.wxs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.wxs new file mode 100644 index 00000000..48708db4 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/AllPmouBundle/Bundle.wxs | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> | ||
| 2 | <Bundle Id="AllPmouBundle$(BA)" Name="AllPmouBundle$(BA)" Manufacturer="Acme" Version="1.0.0.0"> | ||
| 3 | <?if $(BA) = "WixStdBA"?> | ||
| 4 | <BootstrapperApplication> | ||
| 5 | <bal:WixStandardBootstrapperApplication LicenseUrl="https://www.example.com/license" Theme="hyperlinkLicense" /> | ||
| 6 | </BootstrapperApplication> | ||
| 7 | <?endif?> | ||
| 8 | |||
| 9 | <Variable Name="TestGroupName" Value="ConfigurableScopeTests" /> | ||
| 10 | |||
| 11 | <Chain> | ||
| 12 | <?if $(BA) = "TestBA"?> | ||
| 13 | <PackageGroupRef Id="TestBA" /> | ||
| 14 | <?endif?> | ||
| 15 | <MsiPackage SourceFile="PmouPkg1.msi" /> | ||
| 16 | <MsiPackage SourceFile="PmouPkg2.msi" /> | ||
| 17 | </Chain> | ||
| 18 | </Bundle> | ||
| 19 | </Wix> | ||
