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