diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-31 18:32:34 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2021-01-03 16:20:17 -0600 |
| commit | 7b37f41230ca1e5e4a81b834d320831de93616a9 (patch) | |
| tree | 012cc963717a37c82477ecc1deafd3d89cd32239 /src/TestData/BasicFunctionality/BundleA/BundleA.wxi | |
| parent | 543a3f9a87204a32c9ded3f9f519ad6d42107ab7 (diff) | |
| download | wix-7b37f41230ca1e5e4a81b834d320831de93616a9.tar.gz wix-7b37f41230ca1e5e4a81b834d320831de93616a9.tar.bz2 wix-7b37f41230ca1e5e4a81b834d320831de93616a9.zip | |
Add test for basic functionality.
Force test project to be x64.
Fix intermediate path to include the test group name.
Diffstat (limited to 'src/TestData/BasicFunctionality/BundleA/BundleA.wxi')
| -rw-r--r-- | src/TestData/BasicFunctionality/BundleA/BundleA.wxi | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/TestData/BasicFunctionality/BundleA/BundleA.wxi b/src/TestData/BasicFunctionality/BundleA/BundleA.wxi new file mode 100644 index 00000000..0bad694e --- /dev/null +++ b/src/TestData/BasicFunctionality/BundleA/BundleA.wxi | |||
| @@ -0,0 +1,21 @@ | |||
| 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 Version?> | ||
| 4 | <?define Version = 1.0.0.0?> | ||
| 5 | <?endif?> | ||
| 6 | |||
| 7 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> | ||
| 8 | <Bundle Name="~$(var.TestGroupName) - Bundle A" Version="$(var.Version)" UpgradeCode="{8C7E2C47-1EE7-4BBE-99A2-EAB7F3693F48}" Compressed="yes"> | ||
| 9 | <Log Prefix="~$(var.TestGroupName)_BundleA" /> | ||
| 10 | |||
| 11 | <Variable Name="TestGroupName" Value="$(var.TestGroupName)" /> | ||
| 12 | |||
| 13 | <BootstrapperApplication> | ||
| 14 | <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLicense" /> | ||
| 15 | </BootstrapperApplication> | ||
| 16 | |||
| 17 | <Chain> | ||
| 18 | <PackageGroupRef Id="BundlePackages" /> | ||
| 19 | </Chain> | ||
| 20 | </Bundle> | ||
| 21 | </Include> | ||
