aboutsummaryrefslogtreecommitdiff
path: root/src/TestData/MsiTransaction/BundleAv2
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-12-01 23:02:05 -0600
committerSean Hall <r.sean.hall@gmail.com>2020-12-01 23:02:05 -0600
commit5d0434843c6f307a46fa95139c1e754221cc13af (patch)
tree559f1714b14c08fa09449b62770c9107fae968c3 /src/TestData/MsiTransaction/BundleAv2
parent86456524fe4640053616f6fc18311159e6fafea5 (diff)
downloadwix-5d0434843c6f307a46fa95139c1e754221cc13af.tar.gz
wix-5d0434843c6f307a46fa95139c1e754221cc13af.tar.bz2
wix-5d0434843c6f307a46fa95139c1e754221cc13af.zip
Add MSI transaction tests.
Diffstat (limited to 'src/TestData/MsiTransaction/BundleAv2')
-rw-r--r--src/TestData/MsiTransaction/BundleAv2/BundleAv2.wixproj17
-rw-r--r--src/TestData/MsiTransaction/BundleAv2/BundleAv2.wxs15
2 files changed, 32 insertions, 0 deletions
diff --git a/src/TestData/MsiTransaction/BundleAv2/BundleAv2.wixproj b/src/TestData/MsiTransaction/BundleAv2/BundleAv2.wixproj
new file mode 100644
index 00000000..2dbb9539
--- /dev/null
+++ b/src/TestData/MsiTransaction/BundleAv2/BundleAv2.wixproj
@@ -0,0 +1,17 @@
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 <Version>2.0.0.0</Version>
6 </PropertyGroup>
7 <ItemGroup>
8 <ProjectReference Include="..\..\TestBA\TestBAWixlib\testbawixlib.wixproj" />
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.63" />
15 <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.51" />
16 </ItemGroup>
17</Project> \ No newline at end of file
diff --git a/src/TestData/MsiTransaction/BundleAv2/BundleAv2.wxs b/src/TestData/MsiTransaction/BundleAv2/BundleAv2.wxs
new file mode 100644
index 00000000..7feab97b
--- /dev/null
+++ b/src/TestData/MsiTransaction/BundleAv2/BundleAv2.wxs
@@ -0,0 +1,15 @@
1<?xml version='1.0' encoding='utf-8'?>
2<!-- 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. -->
3
4
5<Wix xmlns='http://wixtoolset.org/schemas/v4/wxs'>
6 <?include ..\BundleAv1\BundleA.wxi ?>
7 <Fragment>
8 <PackageGroup Id="BundlePackages">
9 <MsiPackage Id="PackageD" SourceFile="$(var.PackageD.TargetPath)" />
10 <RollbackBoundary Transaction='yes' />
11 <MsiPackage Id="PackageB" SourceFile="$(var.PackageBv2.TargetPath)" />
12 <MsiPackage Id="PackageC" SourceFile="$(var.PackageCv2.TargetPath)" />
13 </PackageGroup>
14 </Fragment>
15</Wix>