CakeTaskBuilderOfTExtensions.

IsDependeeOf<TData>(CakeTaskBuilder<TData>, string) Method

Summary

Makes the task a dependee of another task.
Namespace
Cake.Core
Containing Type
CakeTaskBuilderOfTExtensions

Syntax

public static CakeTaskBuilder<TData> IsDependeeOf<TData>(this CakeTaskBuilder<TData> builder, string name) 
    where TData : class

Type Parameters

Name Description
TData The type of the data context.

Parameters

Name Type Description
builder CakeTaskBuilder<TData> The task builder.
name string The name of the task the current task will be a dependency of.

Return Value

Type Description
CakeTaskBuilder<TData> The same CakeTaskBuilder<TData> instance so that multiple calls can be chained.