blob: fae52b8042eb7c51375b5fce4fbce18f36dda34f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<!-- 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. -->
<Include xmlns="http://wixtoolset.org/schemas/v4/wxs">
<?include caSuffix.wxi ?>
<Fragment>
<BootstrapperApplication Id="WixStandardBootstrapperApplication.RtfLicense$(var.Suffix)">
<PayloadGroupRef Id="WixStdbaRtfLicensePayloads" />
<BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
</BootstrapperApplication>
</Fragment>
<Fragment>
<BootstrapperApplication Id="WixStandardBootstrapperApplication.RtfLargeLicense$(var.Suffix)">
<PayloadGroupRef Id="WixStdbaRtfLargeLicensePayloads" />
<BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
</BootstrapperApplication>
</Fragment>
<Fragment>
<BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkLicense$(var.Suffix)">
<PayloadGroupRef Id="WixStdbaHyperlinkLicensePayloads" />
<BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
</BootstrapperApplication>
</Fragment>
<Fragment>
<BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkLargeLicense$(var.Suffix)">
<PayloadGroupRef Id="WixStdbaHyperlinkLargeLicensePayloads" />
<BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
</BootstrapperApplication>
</Fragment>
<Fragment>
<BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkSidebarLicense$(var.Suffix)">
<PayloadGroupRef Id="WixStdbaHyperlinkSidebarLicensePayloads" />
<BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
</BootstrapperApplication>
</Fragment>
<Fragment>
<BootstrapperApplication Id="WixStandardBootstrapperApplication.Foundation$(var.Suffix)">
<BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" />
</BootstrapperApplication>
</Fragment>
</Include>
|