CakeEngine.

RegisterSetupAction(Action<ISetupContext>) Method

Summary

Allows registration of an action that's executed before any tasks are run. If setup fails, no tasks will be executed but teardown will be performed.
Namespace
Cake.Core
Containing Type
CakeEngine

Syntax

public void RegisterSetupAction(Action<ISetupContext> action)

Parameters

Name Type Description
action Action<ISetupContext> The action to be executed.

Return Value

Type Description
void