Note: This is the migration API reference for FAKE 5. The new (modularized) API documentation can be found
here.
If the API is already migrated you can check here if exists in a module.
More information regarding the migration can be found here
OBSOLETE
Use Fake.Installer.Wix instead (FAKE0001 - package: Fake.Installer.Wix - member: Fake.Installer.Wix.CustomActionReturn)
CustomActionReturn
Used in WiXCustomAction for determing the return type
Union Cases
Union Case | Description |
AsyncNoWait
Signature:
|
Indicates that the custom action will run asyncronously and execution may continue after the installer terminates. |
AsyncWait
Signature:
|
Indicates that the custom action will run asynchronously but the installer will wait for the return code at sequence end. |
Check
Signature:
|
Indicates that the custom action will run synchronously and the return code will be checked for success. This is the default. |
Ignore
Signature:
|
Indicates that the custom action will run synchronously and the return code will not be checked. |