aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wxs')
-rw-r--r--src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wxs9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wxs b/src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wxs
index 8608512c..9c512899 100644
--- a/src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wxs
+++ b/src/test/burn/TestData/BAFunctionsTests/BundleAv2/BundleAv2.wxs
@@ -1,15 +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. --> 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 2
3
4<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> 3<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
5 <Fragment> 4 <Fragment>
6 <BootstrapperApplication> 5 <PayloadGroup Id="override ExtraPayloads">
7 <Payload SourceFile="$(var.BafRelatedBundleVariableTesting.TargetPath)" bal:BAFunctions="yes" /> 6 <Payload SourceFile="$(var.BafRelatedBundleVariableTesting.TargetPath)" bal:BAFunctions="yes" />
8 </BootstrapperApplication> 7 </PayloadGroup>
8
9 <PackageGroup Id="BundlePackages"> 9 <PackageGroup Id="BundlePackages">
10 <MsiPackage Id="PackageA" SourceFile="$(var.PackageAv2.TargetPath)" /> 10 <MsiPackage Id="PackageA" SourceFile="$(var.PackageAv2.TargetPath)" />
11 </PackageGroup> 11 </PackageGroup>
12
12 <Variable Name="ANumber" bal:Overridable="yes" Value="4242" Persisted="yes" /> 13 <Variable Name="ANumber" bal:Overridable="yes" Value="4242" Persisted="yes" />
13 <Variable Name="AString" bal:Overridable="yes" Value="This is a test v2" Persisted="yes" /> 14 <Variable Name="AString" bal:Overridable="yes" Value="This is a test v2" Persisted="yes" />
14 </Fragment> 15 </Fragment>
15</Wix> 16</Wix>