diff options
| author | Bob Arnson <bob@firegiant.com> | 2025-04-04 19:19:56 -0400 |
|---|---|---|
| committer | Bob Arnson <github@bobs.org> | 2025-04-04 20:10:19 -0400 |
| commit | 717ac8183b04da445b751865deb40330e5da87c3 (patch) | |
| tree | ee4a67d33053b01396b9fa21474a0151d4d38d70 /src/test/burn/TestData/FailureTests/BundleUpdate | |
| parent | 90b1d345326fd05e701c82fa874590aeb6d1ee93 (diff) | |
| download | wix-717ac8183b04da445b751865deb40330e5da87c3.tar.gz wix-717ac8183b04da445b751865deb40330e5da87c3.tar.bz2 wix-717ac8183b04da445b751865deb40330e5da87c3.zip | |
Sync IEngine.SetUpdateSource with native side.
Fixes https://github.com/wixtoolset/issues/issues/9023
Diffstat (limited to 'src/test/burn/TestData/FailureTests/BundleUpdate')
| -rw-r--r-- | src/test/burn/TestData/FailureTests/BundleUpdate/Bundle.wxs | 31 | ||||
| -rw-r--r-- | src/test/burn/TestData/FailureTests/BundleUpdate/BundleUpdate.wixproj | 16 |
2 files changed, 47 insertions, 0 deletions
diff --git a/src/test/burn/TestData/FailureTests/BundleUpdate/Bundle.wxs b/src/test/burn/TestData/FailureTests/BundleUpdate/Bundle.wxs new file mode 100644 index 00000000..0af817c1 --- /dev/null +++ b/src/test/burn/TestData/FailureTests/BundleUpdate/Bundle.wxs | |||
| @@ -0,0 +1,31 @@ | |||
| 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 | <?ifndef TestVersion?> | ||
| 4 | <?define TestVersion = 1.0.0.0?> | ||
| 5 | <?endif?> | ||
| 6 | |||
| 7 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> | ||
| 8 | <Bundle | ||
| 9 | Name="~$(var.TestGroupName) - $(var.BundleName)" | ||
| 10 | Version="$(var.TestVersion)" | ||
| 11 | Id="WixToolset.Burn.SetUpdateSourceTest" | ||
| 12 | Compressed="yes"> | ||
| 13 | |||
| 14 | <Update Location="updateurl" /> | ||
| 15 | |||
| 16 | <Log Prefix="~$(var.TestGroupName)_$(var.BundleName)" /> | ||
| 17 | |||
| 18 | <Variable Name="TestGroupName" Value="$(var.TestGroupName)" /> | ||
| 19 | |||
| 20 | <Chain> | ||
| 21 | <PackageGroupRef Id="TestBA" /> | ||
| 22 | <PackageGroupRef Id="BundlePackages" /> | ||
| 23 | </Chain> | ||
| 24 | </Bundle> | ||
| 25 | |||
| 26 | <Fragment> | ||
| 27 | <PackageGroup Id="BundlePackages"> | ||
| 28 | <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)" /> | ||
| 29 | </PackageGroup> | ||
| 30 | </Fragment> | ||
| 31 | </Wix> | ||
diff --git a/src/test/burn/TestData/FailureTests/BundleUpdate/BundleUpdate.wixproj b/src/test/burn/TestData/FailureTests/BundleUpdate/BundleUpdate.wixproj new file mode 100644 index 00000000..34ab1aef --- /dev/null +++ b/src/test/burn/TestData/FailureTests/BundleUpdate/BundleUpdate.wixproj | |||
| @@ -0,0 +1,16 @@ | |||
| 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>{C60B9483-CE87-4FDA-AE5A-B39A52E956E8}</UpgradeCode> | ||
| 6 | </PropertyGroup> | ||
| 7 | <ItemGroup> | ||
| 8 | <ProjectReference Include="..\PackageA\PackageA.wixproj" /> | ||
| 9 | <ProjectReference Include="..\PackageB\PackageB.wixproj" /> | ||
| 10 | <ProjectReference Include="..\..\TestBA\TestBAWixlib\testbawixlib.wixproj" /> | ||
| 11 | </ItemGroup> | ||
| 12 | <ItemGroup> | ||
| 13 | <PackageReference Include="WixToolset.BootstrapperApplications.wixext" /> | ||
| 14 | <PackageReference Include="WixToolset.NetFx.wixext" /> | ||
| 15 | </ItemGroup> | ||
| 16 | </Project> | ||
