EnvironmentAliases.

IsRunningOnWindows(ICakeContext) Method

Summary

Determines whether the build script is running on Windows.
Namespace
Cake.Common
Containing Type
EnvironmentAliases

Syntax

[CakeMethodAlias]
[CakeAliasCategory("Platform")]
public static bool IsRunningOnWindows(this ICakeContext context)

Examples

if (IsRunningOnWindows())
{
    Information("Windows!");
}

Attributes

Type Description
CakeMethodAliasAttribute An attribute used to mark script method aliases.
CakeAliasCategoryAttribute An attribute used for documentation of alias methods/properties.

Parameters

Name Type Description
context ICakeContext The context.

Return Value

Type Description
bool true if the build script is running on Windows; otherwise false.