diff options
author | Bob Arnson <bob@firegiant.com> | 2020-10-27 17:56:17 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-10-27 18:01:22 -0400 |
commit | f33b26a3640011cac36c0a657838ed8760a0928b (patch) | |
tree | db8fbf45d589f48948240a0e17a19a7816c67f73 /src/wixlib | |
parent | 79bc46ce89435b275888c7914a07f3e47e5af0fb (diff) | |
download | wix-f33b26a3640011cac36c0a657838ed8760a0928b.tar.gz wix-f33b26a3640011cac36c0a657838ed8760a0928b.tar.bz2 wix-f33b26a3640011cac36c0a657838ed8760a0928b.zip |
Update project for Package/SummaryInformation change.
Diffstat (limited to 'src/wixlib')
-rw-r--r-- | src/wixlib/DifxAppExtension_Platform.wxi | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/src/wixlib/DifxAppExtension_Platform.wxi b/src/wixlib/DifxAppExtension_Platform.wxi index 7583f7ea..b8d613c9 100644 --- a/src/wixlib/DifxAppExtension_Platform.wxi +++ b/src/wixlib/DifxAppExtension_Platform.wxi | |||
@@ -1,23 +1,22 @@ | |||
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 caSuffix.wxi ?> | 5 | <?include caSuffix.wxi ?> |
7 | 6 | ||
8 | <Fragment> | 7 | <Fragment> |
9 | <InstallExecuteSequence> | 8 | <InstallExecuteSequence> |
10 | <Custom Action='MsiProcessDrivers' After='InstallFiles'>VersionNT > 400</Custom> | 9 | <Custom Action="MsiProcessDrivers" After="InstallFiles" Condition="VersionNT > 400" /> |
11 | <Custom Action='MsiCleanupOnSuccess' After='InstallFinalize'>VersionNT > 400</Custom> | 10 | <Custom Action="MsiCleanupOnSuccess" After="InstallFinalize" Condition="VersionNT > 400" /> |
12 | </InstallExecuteSequence> | 11 | </InstallExecuteSequence> |
13 | 12 | ||
14 | <Binary Id='DIFxApp.dll$(var.Suffix)' SourceFile='$(var.platform)\DIFxApp.dll'/> | 13 | <Binary Id="DIFxApp.dll$(var.Suffix)" SourceFile="$(var.platform)\DIFxApp.dll" /> |
15 | <Binary Id='DIFxAppA.dll$(var.Suffix)' SourceFile='$(var.platform)\DIFxAppA.dll'/> | 14 | <Binary Id="DIFxAppA.dll$(var.Suffix)" SourceFile="$(var.platform)\DIFxAppA.dll" /> |
16 | 15 | ||
17 | <CustomAction Id='MsiProcessDrivers$(var.Suffix)' BinaryKey='DIFxApp.dll$(var.Suffix)' DllEntry='ProcessDriverPackages' SuppressModularization='yes' Execute='immediate' /> | 16 | <CustomAction Id="MsiProcessDrivers$(var.Suffix)" DllEntry="ProcessDriverPackages" SuppressModularization="yes" Execute="immediate" BinaryRef="DIFxApp.dll$(var.Suffix)" /> |
18 | <CustomAction Id='MsiInstallDrivers$(var.Suffix)' BinaryKey='DIFxAppA.dll$(var.Suffix)' DllEntry='InstallDriverPackages' SuppressModularization='yes' Execute='deferred' Impersonate='no' /> | 17 | <CustomAction Id="MsiInstallDrivers$(var.Suffix)" DllEntry="InstallDriverPackages" SuppressModularization="yes" Execute="deferred" Impersonate="no" BinaryRef="DIFxAppA.dll$(var.Suffix)" /> |
19 | <CustomAction Id='MsiUninstallDrivers$(var.Suffix)' BinaryKey='DIFxAppA.dll$(var.Suffix)' DllEntry='UninstallDriverPackages' SuppressModularization='yes' Execute='deferred' Impersonate='no' /> | 18 | <CustomAction Id="MsiUninstallDrivers$(var.Suffix)" DllEntry="UninstallDriverPackages" SuppressModularization="yes" Execute="deferred" Impersonate="no" BinaryRef="DIFxAppA.dll$(var.Suffix)" /> |
20 | <CustomAction Id='MsiRollbackInstall$(var.Suffix)' BinaryKey='DIFxAppA.dll$(var.Suffix)' DllEntry='RollbackInstall' SuppressModularization='yes' Execute='rollback' Impersonate='no' /> | 19 | <CustomAction Id="MsiRollbackInstall$(var.Suffix)" DllEntry="RollbackInstall" SuppressModularization="yes" Execute="rollback" Impersonate="no" BinaryRef="DIFxAppA.dll$(var.Suffix)" /> |
21 | <CustomAction Id='MsiCleanupOnSuccess$(var.Suffix)' BinaryKey='DIFxApp.dll$(var.Suffix)' DllEntry='CleanupOnSuccess' SuppressModularization='yes' Execute='immediate' /> | 20 | <CustomAction Id="MsiCleanupOnSuccess$(var.Suffix)" DllEntry="CleanupOnSuccess" SuppressModularization="yes" Execute="immediate" BinaryRef="DIFxApp.dll$(var.Suffix)" /> |
22 | </Fragment> | 21 | </Fragment> |
23 | </Include> | 22 | </Include> |