FAKE - F# Make - A DSL for build tasks and more FAKE
6.0.0

Lookig for older versions of the documentation, pre FAKE v6? See 

v5.fake.build

Wix.CustomActionExecute Type

Used in CustomAction for determing when to run the custom action

Union cases

Union case Description

Commit

Full Usage: Commit

Indicates that the custom action will run after successful completion of the installation script (at the end of the installation).

Deferred

Full Usage: Deferred

Indicates that the custom action runs in-script (possibly with elevated privileges).

FirstSequence

Full Usage: FirstSequence

Indicates that the custom action will only run in the first sequence that runs it.

Immediate

Full Usage: Immediate

Indicates that the custom action will run during normal processing time with user privileges. This is the default.

OncePerProcess

Full Usage: OncePerProcess

Indicates that the custom action will only run in the first sequence that runs it in the same process.

Rollback

Full Usage: Rollback

Indicates that a custom action will run in the rollback sequence when a failure occurs during installation, usually to undo changes made by a deferred custom action.

SecondSequence

Full Usage: SecondSequence

Indicates that a custom action should be run a second time if it was previously run in an earlier sequence.