Summary
    Creates a dependency between two tasks.
    
		- Namespace
 - Cake
.Core  - Containing Type
 - Cake
Task Builder Extensions  
Syntax
public static CakeTaskBuilder IsDependentOn(this CakeTaskBuilder builder, string name)
	Parameters
| Name | Type | Description | 
|---|---|---|
| builder | CakeTaskBuilder | The task builder. | 
| name | string | The name of the dependent task. | 
Return Value
| Type | Description | 
|---|---|
| CakeTaskBuilder | The same CakeTaskBuilder instance so that multiple calls can be chained. | 
				
