Summary
Gets a value indicating whether this instance is running on RWX.
- Namespace
- Cake
.Common .Build - Containing Type
- BuildSystem
Syntax
public bool IsRunningOnRwx { get; }
Examples
if (BuildSystem.IsRunningOnRwx)
{
// Get the run identifier.
var runId = BuildSystem.Rwx.Environment.Run.Id;
}
Value
| Type | Description |
|---|---|
| bool |
true if this instance is running on RWX; otherwise, false.
|
