diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2022-01-21 16:25:38 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2022-01-21 17:29:12 -0600 |
| commit | af019d2b6d7b67df34355c038290d45366001ea9 (patch) | |
| tree | 9e839496fc1a496a4b5d7e2fa8aa84b823e861b5 /src/test/burn/TestData/DependencyTests/BundleNv1 | |
| parent | 613fe40c487e1cbec118167939c13546a3ce9e80 (diff) | |
| download | wix-af019d2b6d7b67df34355c038290d45366001ea9.tar.gz wix-af019d2b6d7b67df34355c038290d45366001ea9.tar.bz2 wix-af019d2b6d7b67df34355c038290d45366001ea9.zip | |
Add failing dependency E2E tests.
Diffstat (limited to 'src/test/burn/TestData/DependencyTests/BundleNv1')
3 files changed, 34 insertions, 0 deletions
diff --git a/src/test/burn/TestData/DependencyTests/BundleNv1/BundleN.props b/src/test/burn/TestData/DependencyTests/BundleNv1/BundleN.props new file mode 100644 index 00000000..c3e6f9fb --- /dev/null +++ b/src/test/burn/TestData/DependencyTests/BundleNv1/BundleN.props | |||
| @@ -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 | <Project> | ||
| 3 | <PropertyGroup> | ||
| 4 | <OutputType>Bundle</OutputType> | ||
| 5 | <UpgradeCode>{8F2B8413-CBA1-4284-BA4F-0005FE35E7B9}</UpgradeCode> | ||
| 6 | </PropertyGroup> | ||
| 7 | <ItemGroup> | ||
| 8 | <Compile Include="..\..\Templates\Bundle.wxs" Link="Bundle.wxs" /> | ||
| 9 | </ItemGroup> | ||
| 10 | </Project> | ||
diff --git a/src/test/burn/TestData/DependencyTests/BundleNv1/BundleNv1.wixproj b/src/test/burn/TestData/DependencyTests/BundleNv1/BundleNv1.wixproj new file mode 100644 index 00000000..3bcd8c0c --- /dev/null +++ b/src/test/burn/TestData/DependencyTests/BundleNv1/BundleNv1.wixproj | |||
| @@ -0,0 +1,13 @@ | |||
| 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="BundleN.props" /> | ||
| 4 | <ItemGroup> | ||
| 5 | <ProjectReference Include="..\PackageFv1\PackageFv1.wixproj" /> | ||
| 6 | <ProjectReference Include="..\PackageGv1\PackageGv1.wixproj" /> | ||
| 7 | <ProjectReference Include="..\..\TestBA\TestBAWixlib\testbawixlib.wixproj" /> | ||
| 8 | </ItemGroup> | ||
| 9 | <ItemGroup> | ||
| 10 | <PackageReference Include="WixToolset.Bal.wixext" /> | ||
| 11 | <PackageReference Include="WixToolset.NetFx.wixext" /> | ||
| 12 | </ItemGroup> | ||
| 13 | </Project> \ No newline at end of file | ||
diff --git a/src/test/burn/TestData/DependencyTests/BundleNv1/BundleNv1.wxs b/src/test/burn/TestData/DependencyTests/BundleNv1/BundleNv1.wxs new file mode 100644 index 00000000..19fd3bf8 --- /dev/null +++ b/src/test/burn/TestData/DependencyTests/BundleNv1/BundleNv1.wxs | |||
| @@ -0,0 +1,11 @@ | |||
| 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="PackageF" SourceFile="$(var.PackageFv1.TargetPath)" /> | ||
| 8 | <MsiPackage Id="PackageG" SourceFile="$(var.PackageGv1.TargetPath)" /> | ||
| 9 | </PackageGroup> | ||
| 10 | </Fragment> | ||
| 11 | </Wix> | ||
