diff options
| author | Bob Arnson <bob@firegiant.com> | 2026-02-20 19:18:23 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2026-02-20 19:18:23 -0500 |
| commit | 8f3c366e9671dc5d4931dd3de28a42a1f1be32a5 (patch) | |
| tree | b9f270a14fe73dc07667cf37ea0232662e7d858b /src/test/burn/TestData/ConfigurableScopeTests | |
| parent | 96222b03ccc510027cb4d506fb424961cc351e03 (diff) | |
| download | wix-bob/WixStdBaConfigurableScope.tar.gz wix-bob/WixStdBaConfigurableScope.tar.bz2 wix-bob/WixStdBaConfigurableScope.zip | |
Configurable-scope bundles for WixStdBA.bob/WixStdBaConfigurableScope
Fixes https://github.com/wixtoolset/issues/issues/9234
Fixes https://github.com/wixtoolset/issues/issues/9235
Diffstat (limited to 'src/test/burn/TestData/ConfigurableScopeTests')
| -rw-r--r-- | src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.props | 1 | ||||
| -rw-r--r-- | src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.wxs | 16 |
2 files changed, 16 insertions, 1 deletions
diff --git a/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.props b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.props index d704544c..aa4945d3 100644 --- a/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.props +++ b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.props | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | </PropertyGroup> | 4 | </PropertyGroup> |
| 5 | <ItemGroup> | 5 | <ItemGroup> |
| 6 | <PackageReference Include="WixToolset.BootstrapperApplications.wixext" /> | 6 | <PackageReference Include="WixToolset.BootstrapperApplications.wixext" /> |
| 7 | <PackageReference Include="WixToolset.Util.wixext" /> | ||
| 7 | <PackageReference Include="WixToolset.NetFx.wixext" /> | 8 | <PackageReference Include="WixToolset.NetFx.wixext" /> |
| 8 | </ItemGroup> | 9 | </ItemGroup> |
| 9 | <ItemGroup> | 10 | <ItemGroup> |
diff --git a/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.wxs index 8e1a881a..e47611c5 100644 --- a/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.wxs +++ b/src/test/burn/TestData/ConfigurableScopeTests/AllPuomBundle/Bundle.wxs | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> | 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> |
| 2 | <Bundle Id="AllPuomBundle$(BA)" Name="AllPuomBundle$(BA)" Manufacturer="Acme" Version="$(Version)"> | 2 | <Bundle Id="AllPuomBundle$(BA)" Name="AllPuomBundle$(BA)" Manufacturer="Acme" Version="$(Version)"> |
| 3 | <?if $(BA) = "WixStdBA"?> | 3 | <?if $(BA) = "WixStdBA"?> |
| 4 | <BootstrapperApplication> | 4 | <BootstrapperApplication> |
| @@ -8,6 +8,12 @@ | |||
| 8 | 8 | ||
| 9 | <Variable Name="TestGroupName" Value="ConfigurableScopeTests" /> | 9 | <Variable Name="TestGroupName" Value="ConfigurableScopeTests" /> |
| 10 | 10 | ||
| 11 | <!-- Add some random upgrade codes for the fun of it. --> | ||
| 12 | <RelatedBundle Code="{087861DF-D2EC-4485-9F07-E4CCD67D12D1}" Action="upgrade" /> | ||
| 13 | <RelatedBundle Code="{8D6ADB72-EDE7-4D92-B88F-494A2425FE20}" Action="upgrade" /> | ||
| 14 | |||
| 15 | <util:ProductSearchRef Id="FooSearch" /> | ||
| 16 | |||
| 11 | <Chain> | 17 | <Chain> |
| 12 | <?if $(BA) = "TestBA"?> | 18 | <?if $(BA) = "TestBA"?> |
| 13 | <PackageGroupRef Id="TestBA" /> | 19 | <PackageGroupRef Id="TestBA" /> |
| @@ -16,4 +22,12 @@ | |||
| 16 | <MsiPackage SourceFile="PuomPkg2.msi" /> | 22 | <MsiPackage SourceFile="PuomPkg2.msi" /> |
| 17 | </Chain> | 23 | </Chain> |
| 18 | </Bundle> | 24 | </Bundle> |
| 25 | |||
| 26 | <Fragment> | ||
| 27 | <util:ProductSearch Id="FooSearch" ProductCode="{BD22A70A-6191-468B-B6EE-2738916017C1}" Variable="Foo" /> | ||
| 28 | |||
| 29 | <!-- Add some more random upgrade codes for even more fun. --> | ||
| 30 | <RelatedBundle Code="{B18397C3-C223-4E5B-9FD7-E22838F9EDCB}" Action="upgrade" /> | ||
| 31 | <RelatedBundle Code="{5CC50F34-8EB5-48F9-B0CC-DC54232C487A}" Action="upgrade" /> | ||
| 32 | </Fragment> | ||
| 19 | </Wix> | 33 | </Wix> |
