aboutsummaryrefslogtreecommitdiff
path: root/src/TestData/LayoutTests/BundleA/BundleA.wixproj
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-03-30 15:50:32 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-03-30 16:05:00 -0500
commit72d694ee9cb6954953e55bf05b09c93ddebdc9d3 (patch)
treeeffa94ca53e95eed1eda71f18c38c564d6aca815 /src/TestData/LayoutTests/BundleA/BundleA.wixproj
parent3221757bb210b23e4c8d859d20aa20b43c0df582 (diff)
downloadwix-72d694ee9cb6954953e55bf05b09c93ddebdc9d3.tar.gz
wix-72d694ee9cb6954953e55bf05b09c93ddebdc9d3.tar.bz2
wix-72d694ee9cb6954953e55bf05b09c93ddebdc9d3.zip
Add layout tests.
Diffstat (limited to 'src/TestData/LayoutTests/BundleA/BundleA.wixproj')
-rw-r--r--src/TestData/LayoutTests/BundleA/BundleA.wixproj23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/TestData/LayoutTests/BundleA/BundleA.wixproj b/src/TestData/LayoutTests/BundleA/BundleA.wixproj
new file mode 100644
index 00000000..fa7f227c
--- /dev/null
+++ b/src/TestData/LayoutTests/BundleA/BundleA.wixproj
@@ -0,0 +1,23 @@
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 <UpgradeCode>{D255FA2D-2B4A-4D78-AE90-C09FECD8491E}</UpgradeCode>
6 </PropertyGroup>
7 <ItemGroup>
8 <ProjectReference Include="..\PackageA\PackageA.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 <!-- Workaround wix.targets brokenness -->
16 <Target Name="CopyUncompressedFiles" AfterTargets="AfterBuild">
17 <ItemGroup>
18 <UncompressedFiles Include="$(IntermediateOutputPath)\BundleA.wxs" />
19 <UncompressedFiles Include="$(IntermediateOutputPath)\packages.cab" />
20 </ItemGroup>
21 <Copy SourceFiles="@(UncompressedFiles)" DestinationFolder="$(OutputPath)" />
22 </Target>
23</Project> \ No newline at end of file