diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-20 17:04:26 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-20 17:12:19 -0600 |
| commit | 611bf9ec74426c972b6b271cb51d81e467d990cd (patch) | |
| tree | 5ae8ba1420bf376814dbfdddceaf32ab73416b82 /src/wixlib | |
| parent | 976534ee824bf2a5cbc86764d1edf595ac30087b (diff) | |
| download | wix-611bf9ec74426c972b6b271cb51d81e467d990cd.tar.gz wix-611bf9ec74426c972b6b271cb51d81e467d990cd.tar.bz2 wix-611bf9ec74426c972b6b271cb51d81e467d990cd.zip | |
Fix theme PayloadGroupRefs and BalBurnBackendExtension.
Diffstat (limited to 'src/wixlib')
| -rw-r--r-- | src/wixlib/BalExtension_platform.wxi | 52 |
1 files changed, 48 insertions, 4 deletions
diff --git a/src/wixlib/BalExtension_platform.wxi b/src/wixlib/BalExtension_platform.wxi index fa7d1182..33122fb2 100644 --- a/src/wixlib/BalExtension_platform.wxi +++ b/src/wixlib/BalExtension_platform.wxi | |||
| @@ -1,25 +1,69 @@ | |||
| 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. --> | 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 | 2 | ||
| 3 | 3 | ||
| 4 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 4 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 5 | <?include caDecor.wxi ?> | 5 | <?include caDecor.wxi ?> |
| 6 | <Fragment> | 6 | <Fragment> |
| 7 | <BootstrapperApplication Id="WixDotNetCoreBootstrapperApplicationHost$(var.Suffix)"> | 7 | <BootstrapperApplication Id="WixDotNetCoreBootstrapperApplicationHost$(var.Suffix)"> |
| 8 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\dnchost.dll" /> | 8 | <BootstrapperApplicationDll Id="WixDotNetCoreBootstrapperApplicationHost" SourceFile="!(bindpath.$(var.platform))\dnchost.dll" /> |
| 9 | <Payload SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" Name="dncpreq.dll" /> | 9 | <Payload SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" Name="dncpreq.dll" /> |
| 10 | <PayloadGroupRef Id="WixDotNetCoreBootstrapperApplicationHostManagedPayloads" /> | 10 | <PayloadGroupRef Id="WixDotNetCoreBootstrapperApplicationHostManagedPayloads" /> |
| 11 | </BootstrapperApplication> | 11 | </BootstrapperApplication> |
| 12 | </Fragment> | 12 | </Fragment> |
| 13 | <Fragment> | 13 | <Fragment> |
| 14 | <BootstrapperApplication Id="WixDotNetCoreBootstrapperApplicationHost.Standard$(var.Suffix)"> | ||
| 15 | <PayloadGroupRef Id="DncPreqStandardPayloads" /> | ||
| 16 | </BootstrapperApplication> | ||
| 17 | <BootstrapperApplicationRef Id="WixDotNetCoreBootstrapperApplicationHost$(var.Suffix)" /> | ||
| 18 | </Fragment> | ||
| 19 | |||
| 20 | <Fragment> | ||
| 14 | <BootstrapperApplication Id="WixManagedBootstrapperApplicationHost$(var.Suffix)"> | 21 | <BootstrapperApplication Id="WixManagedBootstrapperApplicationHost$(var.Suffix)"> |
| 15 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\mbahost.dll" /> | 22 | <BootstrapperApplicationDll Id="WixManagedBootstrapperApplicationHost" SourceFile="!(bindpath.$(var.platform))\mbahost.dll" /> |
| 16 | <Payload SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" Name="mbapreq.dll" /> | 23 | <Payload SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" Name="mbapreq.dll" /> |
| 17 | <PayloadGroupRef Id="WixManagedBootstrapperApplicationHostManagedPayloads" /> | 24 | <PayloadGroupRef Id="WixManagedBootstrapperApplicationHostManagedPayloads" /> |
| 18 | </BootstrapperApplication> | 25 | </BootstrapperApplication> |
| 19 | </Fragment> | 26 | </Fragment> |
| 20 | <Fragment> | 27 | <Fragment> |
| 28 | <BootstrapperApplication Id="WixManagedBootstrapperApplicationHost.Standard$(var.Suffix)"> | ||
| 29 | <PayloadGroupRef Id="MbaPreqStandardPayloads" /> | ||
| 30 | </BootstrapperApplication> | ||
| 31 | <BootstrapperApplicationRef Id="WixManagedBootstrapperApplicationHost$(var.Suffix)" /> | ||
| 32 | </Fragment> | ||
| 33 | |||
| 34 | <Fragment> | ||
| 21 | <BootstrapperApplication Id="WixStandardBootstrapperApplication$(var.Suffix)"> | 35 | <BootstrapperApplication Id="WixStandardBootstrapperApplication$(var.Suffix)"> |
| 22 | <BootstrapperApplicationDll SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" /> | 36 | <BootstrapperApplicationDll Id="WixStandardBootstrapperApplication" SourceFile="!(bindpath.$(var.platform))\wixstdba.dll" /> |
| 37 | </BootstrapperApplication> | ||
| 38 | </Fragment> | ||
| 39 | <Fragment> | ||
| 40 | <BootstrapperApplication Id="WixStandardBootstrapperApplication.RtfLicense$(var.Suffix)"> | ||
| 41 | <PayloadGroupRef Id="WixStdbaRtfLicensePayloads" /> | ||
| 42 | </BootstrapperApplication> | ||
| 43 | <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication$(var.Suffix)" /> | ||
| 44 | </Fragment> | ||
| 45 | <Fragment> | ||
| 46 | <BootstrapperApplication Id="WixStandardBootstrapperApplication.RtfLargeLicense$(var.Suffix)"> | ||
| 47 | <PayloadGroupRef Id="WixStdbaRtfLargeLicensePayloads" /> | ||
| 48 | </BootstrapperApplication> | ||
| 49 | <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication$(var.Suffix)" /> | ||
| 50 | </Fragment> | ||
| 51 | <Fragment> | ||
| 52 | <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkLicense$(var.Suffix)"> | ||
| 53 | <PayloadGroupRef Id="WixStdbaHyperlinkLicensePayloads" /> | ||
| 54 | </BootstrapperApplication> | ||
| 55 | <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication$(var.Suffix)" /> | ||
| 56 | </Fragment> | ||
| 57 | <Fragment> | ||
| 58 | <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkLargeLicense$(var.Suffix)"> | ||
| 59 | <PayloadGroupRef Id="WixStdbaHyperlinkLargeLicensePayloads" /> | ||
| 60 | </BootstrapperApplication> | ||
| 61 | <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication$(var.Suffix)" /> | ||
| 62 | </Fragment> | ||
| 63 | <Fragment> | ||
| 64 | <BootstrapperApplication Id="WixStandardBootstrapperApplication.HyperlinkSidebarLicense$(var.Suffix)"> | ||
| 65 | <PayloadGroupRef Id="WixStdbaHyperlinkSidebarLicensePayloads" /> | ||
| 23 | </BootstrapperApplication> | 66 | </BootstrapperApplication> |
| 67 | <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication$(var.Suffix)" /> | ||
| 24 | </Fragment> | 68 | </Fragment> |
| 25 | </Include> | 69 | </Include> |
