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 |
---|---|
Cake |
An attribute used to mark script method aliases. |
Cake |
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 .
|