ICakeTaskInfo Interface

Summary

Provides descriptive properties about a cake task.
Namespace
Cake.Core
Implementing Types
graph BT Type["ICakeTaskInfo"] class Type type-node Implementing0["CakeTask"]-.->Type click Implementing0 "/api/Cake.Core/CakeTask"

Syntax

public interface ICakeTaskInfo

Properties

Name Value Summary
Dependees IReadOnlyList<CakeTaskDependency>
Gets the tasks that the task want to be a dependency of.
Dependencies IReadOnlyList<CakeTaskDependency>
Gets the task's dependencies.
Description string
Gets the description of the task.
Name string
Gets the name of the task.

Extension Methods

Name Value Summary
Dump<ICakeTaskInfo>() string
Get a basic string representation of specified object.
Requires the Cake.Incubator addin
IsIn<ICakeTaskInfo>(ICakeTaskInfo[]) bool
Checks if the source is contained in a list
Requires the Cake.Incubator addin
NotNull<ICakeTaskInfo>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Ftp addin
NotNull<ICakeTaskInfo>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Issues addin
ThrowIfNull<ICakeTaskInfo>(string, string) T
Throws a System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ThrowIfNull<ICakeTaskInfo>(string) T
Throws a System.ArgumentNullException if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ToDictionary() IDictionary<string, object>
Requires the Cake.DeployParams addin