IScriptHost.

Teardown(Action<ITeardownContext>) Method

Summary

Allows registration of an action that's executed after all other tasks have been run. If a setup action or a task fails with or without recovery, the specified teardown action will still be executed.
Namespace
Cake.Core.Scripting
Containing Type
IScriptHost

Syntax

void Teardown(Action<ITeardownContext> action)

Examples

Teardown(context => {
  context.Log.Information("Goodbye World!");
});

Parameters

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

Return Value

Type Description
void