diff options
Diffstat (limited to 'src/wixlib/DependencyExtension_Platform.wxi')
| -rw-r--r-- | src/wixlib/DependencyExtension_Platform.wxi | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/src/wixlib/DependencyExtension_Platform.wxi b/src/wixlib/DependencyExtension_Platform.wxi index 299a93eb..68dec471 100644 --- a/src/wixlib/DependencyExtension_Platform.wxi +++ b/src/wixlib/DependencyExtension_Platform.wxi | |||
| @@ -1,29 +1,28 @@ | |||
| 1 | <?xml version="1.0"?> | 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 | <!-- 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. --> | ||
| 3 | 2 | ||
| 4 | 3 | ||
| 5 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | 4 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 6 | <?include caDecor.wxi ?> | 5 | <?include caDecor.wxi ?> |
| 7 | 6 | ||
| 8 | <Fragment> | 7 | <Fragment> |
| 9 | <CustomAction Id="$(var.Prefix)DependencyRequire$(var.Suffix)" BinaryKey="DependencyCA$(var.Suffix)" DllEntry="WixDependencyRequire" Execute="immediate" Return="check" SuppressModularization="yes"/> | 8 | <CustomAction Id="$(var.Prefix)DependencyRequire$(var.Suffix)" DllEntry="WixDependencyRequire" Execute="immediate" Return="check" SuppressModularization="yes" BinaryRef="DependencyCA$(var.Suffix)" /> |
| 10 | <InstallExecuteSequence> | 9 | <InstallExecuteSequence> |
| 11 | <Custom Action="$(var.Prefix)DependencyRequire$(var.Suffix)" Before="WixDependencyCheck$(var.Suffix)" Overridable="yes"><![CDATA[NOT DISABLEDEPENDENCYCHECK]]></Custom> | 10 | <Custom Action="$(var.Prefix)DependencyRequire$(var.Suffix)" Before="WixDependencyCheck$(var.Suffix)" Overridable="yes" Condition="NOT DISABLEDEPENDENCYCHECK" /> |
| 12 | </InstallExecuteSequence> | 11 | </InstallExecuteSequence> |
| 13 | <UIRef Id="WixDependencyErrors"/> | 12 | <UIRef Id="WixDependencyErrors" /> |
| 14 | <PropertyRef Id="DISABLEDEPENDENCYCHECK"/> | 13 | <PropertyRef Id="DISABLEDEPENDENCYCHECK" /> |
| 15 | </Fragment> | 14 | </Fragment> |
| 16 | 15 | ||
| 17 | <Fragment> | 16 | <Fragment> |
| 18 | <CustomAction Id="$(var.Prefix)DependencyCheck$(var.Suffix)" BinaryKey="DependencyCA$(var.Suffix)" DllEntry="WixDependencyCheck" Execute="immediate" Return="check" SuppressModularization="yes"/> | 17 | <CustomAction Id="$(var.Prefix)DependencyCheck$(var.Suffix)" DllEntry="WixDependencyCheck" Execute="immediate" Return="check" SuppressModularization="yes" BinaryRef="DependencyCA$(var.Suffix)" /> |
| 19 | <InstallExecuteSequence> | 18 | <InstallExecuteSequence> |
| 20 | <Custom Action="$(var.Prefix)DependencyCheck$(var.Suffix)" Before="InstallInitialize" Overridable="yes"><![CDATA[(REMOVE OR MsiPatchRemovalList) AND NOT (UPGRADINGPRODUCTCODE OR IGNOREDEPENDENCIES="ALL")]]></Custom> | 19 | <Custom Action="$(var.Prefix)DependencyCheck$(var.Suffix)" Before="InstallInitialize" Overridable="yes" Condition="(REMOVE OR MsiPatchRemovalList) AND NOT (UPGRADINGPRODUCTCODE OR IGNOREDEPENDENCIES="ALL")" /> |
| 21 | </InstallExecuteSequence> | 20 | </InstallExecuteSequence> |
| 22 | <UIRef Id="WixDependencyErrors"/> | 21 | <UIRef Id="WixDependencyErrors" /> |
| 23 | <PropertyRef Id="IGNOREDEPENDENCIES"/> | 22 | <PropertyRef Id="IGNOREDEPENDENCIES" /> |
| 24 | </Fragment> | 23 | </Fragment> |
| 25 | 24 | ||
| 26 | <Fragment> | 25 | <Fragment> |
| 27 | <Binary Id="DependencyCA$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))dependencyca.dll"/> | 26 | <Binary Id="DependencyCA$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))dependencyca.dll" /> |
| 28 | </Fragment> | 27 | </Fragment> |
| 29 | </Include> | 28 | </Include> |
