ICakeEnvironment Interface

Summary

Represents the environment Cake operates in.
Namespace
Cake.Core
Implementing Types
graph BT Type["ICakeEnvironment"] class Type type-node Implementing0["CakeEnvironment"]-.->Type click Implementing0 "/api/Cake.Core/CakeEnvironment" Implementing1["FakeEnvironment"]-.->Type click Implementing1 "/api/Cake.Testing/FakeEnvironment"

Syntax

public interface ICakeEnvironment

Properties

Name Value Summary
ApplicationRoot DirectoryPath
Gets the application root path.
Platform ICakePlatform
Gets the platform Cake is running on.
Runtime ICakeRuntime
Gets the runtime Cake is running in.
UserHomeDirectory DirectoryPath
Gets the user's home directory.
WorkingDirectory DirectoryPath
Gets or sets the working directory.

Methods

Name Value Summary
GetEnvironmentVariable(string) string
Gets an environment variable.
GetEnvironmentVariables() IDictionary<string, string>
Gets all environment variables.
GetSpecialPath(SpecialPath) DirectoryPath
Gets a special path.

Extension Methods

Name Value Summary
Dump<ICakeEnvironment>() string
Get a basic string representation of specified object.
Requires the Cake.Incubator addin
ExpandEnvironmentVariables(string) string
Expands the environment variables in the provided text.
IsIn<ICakeEnvironment>(ICakeEnvironment[]) bool
Checks if the source is contained in a list
Requires the Cake.Incubator addin
NotNull<ICakeEnvironment>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Ftp addin
NotNull<ICakeEnvironment>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Issues addin
ThrowIfNull<ICakeEnvironment>(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<ICakeEnvironment>(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