diff options
Diffstat (limited to 'src/test/burn/TestData/VariableTests/BundleA/BundleA.wxs')
-rw-r--r-- | src/test/burn/TestData/VariableTests/BundleA/BundleA.wxs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/burn/TestData/VariableTests/BundleA/BundleA.wxs b/src/test/burn/TestData/VariableTests/BundleA/BundleA.wxs new file mode 100644 index 00000000..f243c97d --- /dev/null +++ b/src/test/burn/TestData/VariableTests/BundleA/BundleA.wxs | |||
@@ -0,0 +1,17 @@ | |||
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 | </MsiPackage> | ||
12 | </PackageGroup> | ||
13 | |||
14 | <Variable Name="INSTALLLOCATION" bal:Overridable="yes" /> | ||
15 | <Variable Name="LICENSEKEY" Hidden="yes" bal:Overridable="yes" /> | ||
16 | </Fragment> | ||
17 | </Wix> | ||