aboutsummaryrefslogtreecommitdiff
path: root/src/TestData/MsiTransactionTests/BundleBv2
diff options
context:
space:
mode:
Diffstat (limited to 'src/TestData/MsiTransactionTests/BundleBv2')
-rw-r--r--src/TestData/MsiTransactionTests/BundleBv2/BundleBv2.wixproj18
-rw-r--r--src/TestData/MsiTransactionTests/BundleBv2/BundleBv2.wxs15
2 files changed, 33 insertions, 0 deletions
diff --git a/src/TestData/MsiTransactionTests/BundleBv2/BundleBv2.wixproj b/src/TestData/MsiTransactionTests/BundleBv2/BundleBv2.wixproj
new file mode 100644
index 00000000..7162dea2
--- /dev/null
+++ b/src/TestData/MsiTransactionTests/BundleBv2/BundleBv2.wixproj
@@ -0,0 +1,18 @@
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<Project Sdk="WixToolset.Sdk">
3 <PropertyGroup>
4 <OutputType>Bundle</OutputType>
5 <SuppressSpecificWarnings>1151</SuppressSpecificWarnings>
6 <Version>2.0.0.0</Version>
7 </PropertyGroup>
8 <ItemGroup>
9 <ProjectReference Include="..\..\TestBA\TestBAWixlib\testbawixlib.wixproj" />
10 <ProjectReference Include="..\PackageA\PackageA.wixproj" />
11 <ProjectReference Include="..\PackageBv2\PackageBv2.wixproj" />
12 <ProjectReference Include="..\PackageF\PackageF.wixproj" />
13 </ItemGroup>
14 <ItemGroup>
15 <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.77" />
16 <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.56" />
17 </ItemGroup>
18</Project> \ No newline at end of file
diff --git a/src/TestData/MsiTransactionTests/BundleBv2/BundleBv2.wxs b/src/TestData/MsiTransactionTests/BundleBv2/BundleBv2.wxs
new file mode 100644
index 00000000..33665860
--- /dev/null
+++ b/src/TestData/MsiTransactionTests/BundleBv2/BundleBv2.wxs
@@ -0,0 +1,15 @@
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
4<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
5 <?include ..\BundleBv1\BundleB.wxi ?>
6 <Fragment>
7 <PackageGroup Id="BundlePackages">
8 <PackageGroupRef Id="TestBAdnc" />
9 <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)" />
10 <RollbackBoundary Transaction="yes" />
11 <MsiPackage Id="PackageB" SourceFile="$(var.PackageBv2.TargetPath)" />
12 <MsiPackage Id="PackageF" SourceFile="$(var.PackageF.TargetPath)" />
13 </PackageGroup>
14 </Fragment>
15</Wix>