CakeTaskExtensions.

AddDependee(CakeTask, string, bool) Method

Summary

Adds the dependee to the task's dependees.
Namespace
Cake.Core
Containing Type
CakeTaskExtensions

Syntax

public static void AddDependee(this CakeTask task, string name, bool required = true)

Parameters

Name Type Description
task CakeTask The task.
name string The name of the dependee.
required bool Whether or not the dependee is required.

Return Value

Type Description
void