Summary
    Adds an action to be executed foreach item in the list.
    
		- Namespace
- Cake.Core 
- Containing Type
- CakeTask Builder Extensions 
Syntax
public static CakeTaskBuilder DoesForEach<TData, TItem>(this CakeTaskBuilder builder, IEnumerable<TItem> items, Action<TData, TItem> action) 
    where TData : classType Parameters
| Name | Description | 
|---|---|
| TData | The type of the data context. | 
| TItem | The item type. | 
Parameters
| Name | Type | Description | 
|---|---|---|
| builder | CakeTaskBuilder | The task builder. | 
| items | IEnumerable | The items. | 
| action | Action | The action. | 
Return Value
| Type | Description | 
|---|---|
| CakeTaskBuilder | The same CakeTaskBuilderinstance so that multiple calls can be chained. | 
