Note: This API documentation is for FAKE version 4. The migration API documentation can be found
here. The API documentation for the new fake 5 modules can be found
here
TeamCityBuildParameters
TeamCity build parameters See Predefined Build Parameters documentation for more information
Functions and values
Function or value | Description |
getAll()
Signature: unit -> Map<string,string>
|
Get all parameters System ones are prefixed with 'system.', runner ones with 'runner.' and environment variables with 'env.' |
getAllConfiguration()
Signature: unit -> Map<string,string>
|
Get all configuration parameters |
getAllRunner()
Signature: unit -> Map<string,string>
|
Get all runner parameters |
getAllSystem()
Signature: unit -> Map<string,string>
|
Get all system parameters |
tryGet(name)
Signature: name:string -> string option
|
Get the value of a parameter by name System ones are prefixed with 'system.', runner ones with 'runner.' and environment variables with 'env.' |
tryGetConfiguration(name)
Signature: name:string -> string option
|
Get the value of a configuration parameter by name |
tryGetRunner(name)
Signature: name:string -> string option
|
Get the value of a runner parameter by name |
tryGetSystem(name)
Signature: name:string -> string option
|
Get the value of a system parameter by name |