aboutsummaryrefslogtreecommitdiff
path: root/src/TestData/UpdateBundleTests/BundleBv2
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-03-28 14:51:21 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-03-30 16:05:00 -0500
commit3221757bb210b23e4c8d859d20aa20b43c0df582 (patch)
tree4391705303589d48a5f93ac1ba9c5701c9daeba7 /src/TestData/UpdateBundleTests/BundleBv2
parent7cc4271c9d78ed60e354f585d03b612a9efb7cf3 (diff)
downloadwix-3221757bb210b23e4c8d859d20aa20b43c0df582.tar.gz
wix-3221757bb210b23e4c8d859d20aa20b43c0df582.tar.bz2
wix-3221757bb210b23e4c8d859d20aa20b43c0df582.zip
Port the update bundle tests from old repo.
Diffstat (limited to 'src/TestData/UpdateBundleTests/BundleBv2')
-rw-r--r--src/TestData/UpdateBundleTests/BundleBv2/BundleBv2.wixproj18
-rw-r--r--src/TestData/UpdateBundleTests/BundleBv2/BundleBv2.wxs10
2 files changed, 28 insertions, 0 deletions
diff --git a/src/TestData/UpdateBundleTests/BundleBv2/BundleBv2.wixproj b/src/TestData/UpdateBundleTests/BundleBv2/BundleBv2.wixproj
new file mode 100644
index 00000000..cc2aec76
--- /dev/null
+++ b/src/TestData/UpdateBundleTests/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 <Import Project="..\BundleBv1\BundleB.props" />
4 <PropertyGroup>
5 <Version>2.0.0.0</Version>
6 </PropertyGroup>
7 <ItemGroup>
8 <Compile Include="..\BundleBv1\Bundle.wxs" />
9 </ItemGroup>
10 <ItemGroup>
11 <ProjectReference Include="..\PackageBv2\PackageBv2.wixproj" />
12 <ProjectReference Include="..\..\TestBA\TestBAWixlib\testbawixlib.wixproj" />
13 </ItemGroup>
14 <ItemGroup>
15 <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.90" />
16 <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.64" />
17 </ItemGroup>
18</Project> \ No newline at end of file
diff --git a/src/TestData/UpdateBundleTests/BundleBv2/BundleBv2.wxs b/src/TestData/UpdateBundleTests/BundleBv2/BundleBv2.wxs
new file mode 100644
index 00000000..2043b084
--- /dev/null
+++ b/src/TestData/UpdateBundleTests/BundleBv2/BundleBv2.wxs
@@ -0,0 +1,10 @@
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 <Fragment>
6 <PackageGroup Id="BundlePackages">
7 <MsiPackage Id="PackageB" SourceFile="$(var.PackageBv2.TargetPath)" />
8 </PackageGroup>
9 </Fragment>
10</Wix>