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