Summary
Makes the task a dependee of another task.
- Namespace
- Cake
.Core - Containing Type
- Cake
Task Builder Of T Extensions
Syntax
public static CakeTaskBuilder<TData> IsDependeeOf<TData>(this CakeTaskBuilder<TData> builder, CakeTaskBuilder<TData> other)
where TData : class
Type Parameters
Name | Description |
---|---|
TData | The type of the data context. |
Parameters
Name | Type | Description |
---|---|---|
builder | CakeTaskBuilder |
The task builder. |
other | CakeTaskBuilder |
The dependent task. |
Return Value
Type | Description |
---|---|
CakeTaskBuilder |
The same CakeTaskBuilder<TData> instance so that multiple calls can be chained. |