diff options
author | Eric StJohn <ericstj@microsoft.com> | 2021-08-30 15:26:42 -0700 |
---|---|---|
committer | Eric StJohn <ericstj@microsoft.com> | 2021-08-30 15:26:42 -0700 |
commit | 495370ff9311d406da9c043cd208ce836a0303ff (patch) | |
tree | ac5aa19b393dce498ad1938a0ce7410eceff93ba /src/ext/Util/wixlib/UtilExtension_Platform.wxi | |
parent | a4dc574fa13d828614058906c4e99fcb45965fe5 (diff) | |
download | wix-495370ff9311d406da9c043cd208ce836a0303ff.tar.gz wix-495370ff9311d406da9c043cd208ce836a0303ff.tar.bz2 wix-495370ff9311d406da9c043cd208ce836a0303ff.zip |
Add NativeMachine to Burn and WIX_NATIVE_MACHINE to UtilExtension
Diffstat (limited to 'src/ext/Util/wixlib/UtilExtension_Platform.wxi')
-rw-r--r-- | src/ext/Util/wixlib/UtilExtension_Platform.wxi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ext/Util/wixlib/UtilExtension_Platform.wxi b/src/ext/Util/wixlib/UtilExtension_Platform.wxi index 913c01b9..ab436adc 100644 --- a/src/ext/Util/wixlib/UtilExtension_Platform.wxi +++ b/src/ext/Util/wixlib/UtilExtension_Platform.wxi | |||
@@ -353,6 +353,18 @@ | |||
353 | <Custom Action="$(var.Prefix)QueryOsDriverInfo$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> | 353 | <Custom Action="$(var.Prefix)QueryOsDriverInfo$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> |
354 | </InstallUISequence> | 354 | </InstallUISequence> |
355 | </Fragment> | 355 | </Fragment> |
356 | |||
357 | <Fragment> | ||
358 | <CustomAction Id="$(var.Prefix)QueryNativeMachine$(var.Suffix)" DllEntry="WixQueryNativeMachine" Execute="firstSequence" Return="check" SuppressModularization="yes" BinaryRef="$(var.Prefix)UtilCA$(var.Suffix)" /> | ||
359 | |||
360 | <InstallExecuteSequence> | ||
361 | <Custom Action="$(var.Prefix)QueryNativeMachine$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> | ||
362 | </InstallExecuteSequence> | ||
363 | |||
364 | <InstallUISequence> | ||
365 | <Custom Action="$(var.Prefix)QueryNativeMachine$(var.Suffix)" After="AppSearch" Overridable="yes" Condition="VersionNT > 400 OR (VersionNT = 400 AND ServicePackLevel > 3)" /> | ||
366 | </InstallUISequence> | ||
367 | </Fragment> | ||
356 | 368 | ||
357 | <Fragment> | 369 | <Fragment> |
358 | <Binary Id="$(var.Prefix)UtilCA$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))utilca.dll" /> | 370 | <Binary Id="$(var.Prefix)UtilCA$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))utilca.dll" /> |