Summary
Adds an action to be executed when the task is invoked.
- Namespace
- Cake
.Core - Containing Type
- Cake
Task Builder Extensions
Syntax
public static CakeTaskBuilder Does(this CakeTaskBuilder builder, Func<Task> func)
Parameters
| Name | Type | Description |
|---|---|---|
| builder | CakeTaskBuilder | The task builder. |
| func | Func |
The action. |
Return Value
| Type | Description |
|---|---|
| CakeTaskBuilder | The same CakeTaskBuilder instance so that multiple calls can be chained. |
