This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Graph.
Summary
Alias for retrieving the GraphRunner
- Assembly
- Cake
.Graph .dll - Namespace
- Cake
.Graph - Containing Type
- GraphAliases
Syntax
public static GraphRunner Graph(this ICakeContext context, IReadOnlyList<ICakeTaskInfo> tasks)
Examples
Deploy both web files and task nodeset files
Task("Graph")
.Does(() =>
{
Graph(Tasks).Deploy(s => s.SetOutputPath("output"));
});
Attributes
| Type | Description |
|---|---|
| Cake |
Parameters
| Name | Type | Description |
|---|---|---|
| context | ICakeContext | |
| tasks | IReadOnlyList |
Return Value
| Type | Description |
|---|---|
| GraphRunner |
