diff options
Diffstat (limited to 'src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle')
3 files changed, 43 insertions, 0 deletions
diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.props b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.props new file mode 100644 index 00000000..6d0a58f1 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.props | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | <Project> | ||
| 2 | <PropertyGroup> | ||
| 3 | <OutputType>Bundle</OutputType> | ||
| 4 | <SuppressSpecificWarnings>1140</SuppressSpecificWarnings> | ||
| 5 | </PropertyGroup> | ||
| 6 | <ItemGroup> | ||
| 7 | <PackageReference Include="WixToolset.BootstrapperApplications.wixext" /> | ||
| 8 | <PackageReference Include="WixToolset.NetFx.wixext" /> | ||
| 9 | </ItemGroup> | ||
| 10 | <ItemGroup> | ||
| 11 | <ProjectReference Include="..\..\TestBA\TestBAWixlib\testbawixlib.wixproj" /> | ||
| 12 | <ProjectReference Include="..\PuomPkg1\PuomPkg1.wixproj" /> | ||
| 13 | <ProjectReference Include="..\PuomPkg2\PuomPkg2.wixproj" /> | ||
| 14 | <ProjectReference Include="..\PerUserPkg\PerUserPkg.wixproj" /> | ||
| 15 | </ItemGroup> | ||
| 16 | </Project> \ No newline at end of file | ||
diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.wxs b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.wxs new file mode 100644 index 00000000..6c5b6845 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/Bundle.wxs | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> | ||
| 2 | <Bundle Id="PuPuomBundle$(BA)" Name="PuPuomBundle$(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="PuomPkg1.msi" /> | ||
| 16 | <MsiPackage SourceFile="PuomPkg2.msi" /> | ||
| 17 | <MsiPackage SourceFile="PerUserPkg.msi" /> | ||
| 18 | </Chain> | ||
| 19 | </Bundle> | ||
| 20 | </Wix> | ||
diff --git a/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/PuPuomBundleTestBA.wixproj b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/PuPuomBundleTestBA.wixproj new file mode 100644 index 00000000..30d850d4 --- /dev/null +++ b/src/test/burn/TestData/ConfigurableScopeTests/PuPuomBundle/PuPuomBundleTestBA.wixproj | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | <Project Sdk="WixToolset.Sdk"> | ||
| 2 | <PropertyGroup> | ||
| 3 | <BA>TestBA</BA> | ||
| 4 | </PropertyGroup> | ||
| 5 | |||
| 6 | <Import Project="Bundle.props" /> | ||
| 7 | </Project> \ No newline at end of file | ||
