aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/wixlib/bal_platform.wxi
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Bal/wixlib/bal_platform.wxi')
-rw-r--r--src/ext/Bal/wixlib/bal_platform.wxi34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/ext/Bal/wixlib/bal_platform.wxi b/src/ext/Bal/wixlib/bal_platform.wxi
new file mode 100644
index 00000000..af58f4c3
--- /dev/null
+++ b/src/ext/Bal/wixlib/bal_platform.wxi
@@ -0,0 +1,34 @@
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<Include xmlns="http://wixtoolset.org/schemas/v4/wxs">
4 <?include ..\..\caDecor.wxi ?>
5
6 <Fragment>
7 <PayloadGroup Id="WixStandardBootstrapperApplication$(var.Suffix)">
8 <Payload Id="WixStandardBootstrapperApplication$(var.Suffix)"
9 SourceFile="!(bindpath.wixstdba.$(var.platform))\wixstdba.exe" />
10 </PayloadGroup>
11 </Fragment>
12
13 <Fragment>
14 <PayloadGroup Id="WixInternalUIBootstrapperApplication$(var.Suffix)">
15 <Payload Id="WixInternalUIBootstrapperApplication$(var.Suffix)"
16 SourceFile="!(bindpath.wixiuiba.$(var.platform))\wixiuiba.exe" />
17 </PayloadGroup>
18
19 <!-- Internal UI BA depends on the PrereqBA for layout and help (and prerequisites if there are any). -->
20 <BootstrapperApplicationRef Id="WixPrereqBootstrapperApplication.Primary$(var.Suffix)" />
21 </Fragment>
22
23 <Fragment>
24 <BootstrapperApplication Id="WixPrereqBootstrapperApplication.Primary$(var.Suffix)"
25 SourceFile="!(bindpath.wixprqba.$(var.platform))\wixprqba.exe" />
26 </Fragment>
27
28 <Fragment>
29 <BootstrapperApplication Id="WixPrereqBootstrapperApplication.Secondary$(var.Suffix)"
30 SourceFile="!(bindpath.wixprqba.$(var.platform))\wixprqba.exe"
31 Secondary="yes" />
32 </Fragment>
33
34</Include>