aboutsummaryrefslogtreecommitdiff
path: root/src/TestData/UpdateBundleTests/BundleAv2
diff options
context:
space:
mode:
Diffstat (limited to 'src/TestData/UpdateBundleTests/BundleAv2')
-rw-r--r--src/TestData/UpdateBundleTests/BundleAv2/BundleAv2.wixproj15
-rw-r--r--src/TestData/UpdateBundleTests/BundleAv2/BundleAv2.wxs10
2 files changed, 25 insertions, 0 deletions
diff --git a/src/TestData/UpdateBundleTests/BundleAv2/BundleAv2.wixproj b/src/TestData/UpdateBundleTests/BundleAv2/BundleAv2.wixproj
new file mode 100644
index 00000000..78e773db
--- /dev/null
+++ b/src/TestData/UpdateBundleTests/BundleAv2/BundleAv2.wixproj
@@ -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<Project Sdk="WixToolset.Sdk">
3 <Import Project="..\BundleAv1\BundleA.props" />
4 <PropertyGroup>
5 <Version>2.0.0.0</Version>
6 </PropertyGroup>
7 <ItemGroup>
8 <ProjectReference Include="..\PackageAv2\PackageAv2.wixproj" />
9 <ProjectReference Include="..\..\TestBA\TestBAWixlib\testbawixlib.wixproj" />
10 </ItemGroup>
11 <ItemGroup>
12 <PackageReference Include="WixToolset.Bal.wixext" Version="4.0.90" />
13 <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.64" />
14 </ItemGroup>
15</Project> \ No newline at end of file
diff --git a/src/TestData/UpdateBundleTests/BundleAv2/BundleAv2.wxs b/src/TestData/UpdateBundleTests/BundleAv2/BundleAv2.wxs
new file mode 100644
index 00000000..5cbee5a8
--- /dev/null
+++ b/src/TestData/UpdateBundleTests/BundleAv2/BundleAv2.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="PackageA" SourceFile="$(var.PackageAv2.TargetPath)" />
8 </PackageGroup>
9 </Fragment>
10</Wix>