aboutsummaryrefslogtreecommitdiff
path: root/src/TestData/MsiTransactionTests/BundleAv2
diff options
context:
space:
mode:
Diffstat (limited to 'src/TestData/MsiTransactionTests/BundleAv2')
-rw-r--r--src/TestData/MsiTransactionTests/BundleAv2/BundleAv2.wixproj16
-rw-r--r--src/TestData/MsiTransactionTests/BundleAv2/BundleAv2.wxs14
2 files changed, 30 insertions, 0 deletions
diff --git a/src/TestData/MsiTransactionTests/BundleAv2/BundleAv2.wixproj b/src/TestData/MsiTransactionTests/BundleAv2/BundleAv2.wixproj
new file mode 100644
index 00000000..7d1a42c5
--- /dev/null
+++ b/src/TestData/MsiTransactionTests/BundleAv2/BundleAv2.wixproj
@@ -0,0 +1,16 @@
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="..\PackageBv2\PackageBv2.wixproj" />
10 <ProjectReference Include="..\PackageCv2\PackageCv2.wixproj" />
11 <ProjectReference Include="..\PackageD\PackageD.wixproj" />
12 </ItemGroup>
13 <ItemGroup>
14 <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.77" />
15 </ItemGroup>
16</Project> \ No newline at end of file
diff --git a/src/TestData/MsiTransactionTests/BundleAv2/BundleAv2.wxs b/src/TestData/MsiTransactionTests/BundleAv2/BundleAv2.wxs
new file mode 100644
index 00000000..11360c22
--- /dev/null
+++ b/src/TestData/MsiTransactionTests/BundleAv2/BundleAv2.wxs
@@ -0,0 +1,14 @@
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 ..\BundleAv1\BundleA.wxi ?>
6 <Fragment>
7 <PackageGroup Id="BundlePackages">
8 <MsiPackage Id="PackageD" SourceFile="$(var.PackageD.TargetPath)" />
9 <RollbackBoundary Transaction="yes" />
10 <MsiPackage Id="PackageB" SourceFile="$(var.PackageBv2.TargetPath)" />
11 <MsiPackage Id="PackageC" SourceFile="$(var.PackageCv2.TargetPath)" />
12 </PackageGroup>
13 </Fragment>
14</Wix>