blob: 8608512cf196293fdd0fe52720a245a916cb3342 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!-- 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>
<BootstrapperApplication>
<Payload SourceFile="$(var.BafRelatedBundleVariableTesting.TargetPath)" bal:BAFunctions="yes" />
</BootstrapperApplication>
<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>
|