diff options
Diffstat (limited to 'src/test/burn/TestData/LayoutTests/BundleA/BundleA.wixproj')
-rw-r--r-- | src/test/burn/TestData/LayoutTests/BundleA/BundleA.wixproj | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/burn/TestData/LayoutTests/BundleA/BundleA.wixproj b/src/test/burn/TestData/LayoutTests/BundleA/BundleA.wixproj new file mode 100644 index 00000000..4cf9c875 --- /dev/null +++ b/src/test/burn/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.101" /> | ||
13 | <PackageReference Include="WixToolset.NetFx.wixext" Version="4.0.73" /> | ||
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 | ||