diff options
Diffstat (limited to 'src/test/burn/TestData/Manual/BundleD/BundleD.wxs')
-rw-r--r-- | src/test/burn/TestData/Manual/BundleD/BundleD.wxs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/burn/TestData/Manual/BundleD/BundleD.wxs b/src/test/burn/TestData/Manual/BundleD/BundleD.wxs new file mode 100644 index 00000000..a877e214 --- /dev/null +++ b/src/test/burn/TestData/Manual/BundleD/BundleD.wxs | |||
@@ -0,0 +1,17 @@ | |||
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" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> | ||
5 | <Fragment> | ||
6 | <BootstrapperApplication Id="customHyperlinkLicense"> | ||
7 | <!-- WixStandardBootstrapperApplication.RtfLicense --> | ||
8 | <bal:WixStandardBootstrapperApplication LicenseUrl="" Theme="hyperlinkLicense" /> | ||
9 | <Payload SourceFile="$(var.BafRelatedBundleVariableTesting.TargetPath)" bal:BAFunctions="yes" /> | ||
10 | </BootstrapperApplication> | ||
11 | <PackageGroup Id="BundlePackages"> | ||
12 | <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)" /> | ||
13 | </PackageGroup> | ||
14 | <Variable Name="ANumber" bal:Overridable="yes" Value="42" Persisted="yes" /> | ||
15 | <Variable Name="AString" bal:Overridable="yes" Value="This is a test" Persisted="yes" /> | ||
16 | </Fragment> | ||
17 | </Wix> | ||