| 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 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> |
| 4 | <Fragment> |
| 5 | <PayloadGroup Id="override ExtraPayloads"> |
| 6 | <Payload SourceFile="$(var.BafRelatedBundleVariableTesting.TargetPath)" bal:BAFunctions="yes" /> |
| 7 | </PayloadGroup> |
| 8 | |
| 9 | <PackageGroup Id="BundlePackages"> |
| 10 | <MsiPackage Id="PackageA" SourceFile="$(var.PackageAv2.TargetPath)" /> |
| 11 | </PackageGroup> |
| 12 | |
| 13 | <Variable Name="ANumber" bal:Overridable="yes" Value="4242" Persisted="yes" /> |
| 14 | <Variable Name="AString" bal:Overridable="yes" Value="This is a test v2" Persisted="yes" /> |
| 15 | </Fragment> |
| 16 | </Wix> |