main
wxs 18 lines 821 Bytes
Raw
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"
5 xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
6 <Fragment>
7 <PackageGroup Id="BundlePackages">
8 <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)">
9 <MsiProperty Name="INSTALLLOCATION" Value="[INSTALLLOCATION]" />
10 <MsiProperty Name="LICENSEKEY" Value="[LICENSEKEY]" />
11 <MsiProperty Name="BLANKPROPERTY" Value="" />
12 </MsiPackage>
13 </PackageGroup>
14
15 <Variable Name="INSTALLLOCATION" bal:Overridable="yes" />
16 <Variable Name="LICENSEKEY" Hidden="yes" bal:Overridable="yes" />
17 </Fragment>
18 </Wix>