diff options
Diffstat (limited to 'src/test/burn/TestData/Manual/BundleC/BundleC.wxs')
-rw-r--r-- | src/test/burn/TestData/Manual/BundleC/BundleC.wxs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/burn/TestData/Manual/BundleC/BundleC.wxs b/src/test/burn/TestData/Manual/BundleC/BundleC.wxs new file mode 100644 index 00000000..aadcd8b2 --- /dev/null +++ b/src/test/burn/TestData/Manual/BundleC/BundleC.wxs | |||
@@ -0,0 +1,15 @@ | |||
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" xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal"> | ||
5 | <Fragment> | ||
6 | <PackageGroup Id="BundlePackages"> | ||
7 | <MsiPackage Id="PackagePerUser" SourceFile="$(var.PackagePerUser.TargetPath)" /> | ||
8 | <ExePackage Id="ExeA" Cache="remove" PerMachine="no" | ||
9 | DetectCondition="" Permanent="yes" InstallArguments="/ec [EXEEXITCODE]"> | ||
10 | <PayloadGroupRef Id="TestExePayloads" /> | ||
11 | </ExePackage> | ||
12 | </PackageGroup> | ||
13 | <Variable Name="EXEEXITCODE" bal:Overridable="yes" Value="0" /> | ||
14 | </Fragment> | ||
15 | </Wix> | ||