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
SemVerHelper
Contains helpers which allow to deal with Semantic Versioning (SemVer).
Nested types and modules
Type | Description |
Ident | |
PreRelease | |
SemVerInfo |
Contains the version information. |
Functions and values
Function or value | Description | ||
identRE
Signature: Regex
|
|||
isValidSemVer(input)
Signature: input:string -> bool
|
Returns true if input appears to be a parsable semver string |
||
parse(version)
Signature: version:string -> SemVerInfo
|
Parses the given version string into a SemVerInfo which can be printed using ToString() or compared according to the rules described in the SemVer docs. Sample
|
||
parseIdent(s)
Signature: s:string -> Ident
|