aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib/wixstdba_platform.wxi
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-12-08 11:36:06 -0600
committerSean Hall <r.sean.hall@gmail.com>2020-12-08 15:52:52 -0600
commitc52a40fc649b0aebb673cced64a2773aa2425e2d (patch)
treea469d318c227be444dd31755f15c963078c0715a /src/wixlib/wixstdba_platform.wxi
parent1362692be423f821e98f2f5693849206f5ce8620 (diff)
downloadwix-c52a40fc649b0aebb673cced64a2773aa2425e2d.tar.gz
wix-c52a40fc649b0aebb673cced64a2773aa2425e2d.tar.bz2
wix-c52a40fc649b0aebb673cced64a2773aa2425e2d.zip
Use new BootstrapperApplicationDll element.
Diffstat (limited to '')
-rw-r--r--src/wixlib/wixstdba_platform.wxi19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/wixlib/wixstdba_platform.wxi b/src/wixlib/wixstdba_platform.wxi
index a4dc917d..fae52b80 100644
--- a/src/wixlib/wixstdba_platform.wxi
+++ b/src/wixlib/wixstdba_platform.wxi
@@ -4,37 +4,44 @@
4<Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> 4<Include xmlns="http://wixtoolset.org/schemas/v4/wxs">
5 <?include caSuffix.wxi ?> 5 <?include caSuffix.wxi ?>
6 <Fragment> 6 <Fragment>
7 <BootstrapperApplication Id="WixStandardBootstrapperApplication.RtfLicense$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))\wixstdba.dll"> 7 <BootstrapperApplication Id="WixStandardBootstrapperApplication.RtfLicense$(var.Suffix)">
8 <PayloadGroupRef Id="WixStdbaRtfLicensePayloads" /> 8 <PayloadGroupRef Id="WixStdbaRtfLicensePayloads" />
9 <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
9 </BootstrapperApplication> 10 </BootstrapperApplication>
10 </Fragment> 11 </Fragment>
11 12
12 <Fragment> 13 <Fragment>
13 <BootstrapperApplication Id="WixStandardBootstrapperApplication.RtfLargeLicense$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))\wixstdba.dll"> 14 <BootstrapperApplication Id="WixStandardBootstrapperApplication.RtfLargeLicense$(var.Suffix)">
14 <PayloadGroupRef Id="WixStdbaRtfLargeLicensePayloads" /> 15 <PayloadGroupRef Id="WixStdbaRtfLargeLicensePayloads" />
16 <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
15 </BootstrapperApplication> 17 </BootstrapperApplication>
16 </Fragment> 18 </Fragment>
17 19
18 <Fragment> 20 <Fragment>
19 <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkLicense$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))\wixstdba.dll"> 21 <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkLicense$(var.Suffix)">
20 <PayloadGroupRef Id="WixStdbaHyperlinkLicensePayloads" /> 22 <PayloadGroupRef Id="WixStdbaHyperlinkLicensePayloads" />
23 <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
21 </BootstrapperApplication> 24 </BootstrapperApplication>
22 </Fragment> 25 </Fragment>
23 26
24 <Fragment> 27 <Fragment>
25 <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkLargeLicense$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))\wixstdba.dll"> 28 <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkLargeLicense$(var.Suffix)">
26 <PayloadGroupRef Id="WixStdbaHyperlinkLargeLicensePayloads" /> 29 <PayloadGroupRef Id="WixStdbaHyperlinkLargeLicensePayloads" />
30 <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
27 </BootstrapperApplication> 31 </BootstrapperApplication>
28 </Fragment> 32 </Fragment>
29 33
30 <Fragment> 34 <Fragment>
31 <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkSidebarLicense$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))\wixstdba.dll"> 35 <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkSidebarLicense$(var.Suffix)">
32 <PayloadGroupRef Id="WixStdbaHyperlinkSidebarLicensePayloads" /> 36 <PayloadGroupRef Id="WixStdbaHyperlinkSidebarLicensePayloads" />
37 <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
33 </BootstrapperApplication> 38 </BootstrapperApplication>
34 </Fragment> 39 </Fragment>
35 40
36 <Fragment> 41 <Fragment>
37 42
38 <BootstrapperApplication Id="WixStandardBootstrapperApplication.Foundation$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" /> 43 <BootstrapperApplication Id="WixStandardBootstrapperApplication.Foundation$(var.Suffix)">
44 <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
45 </BootstrapperApplication>
39 </Fragment> 46 </Fragment>
40</Include> 47</Include>