This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.Nuget.Versioning.
Summary
Build a nuget compatible version from a branch.
Syntax
public static string BuildNugetSemVer200(this ICakeContext context, int major, int minor, int patch, string suffix, bool prerelease)
Examples
var version = BuildNugetSemVer200(1, 0, 0, "newfunction");
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
major |
int |
The major part of the version (1st) |
minor |
int |
The minor part of the version (2nd) |
patch |
int |
The patch part of the version (3rd) |
suffix |
string |
The version suffix |
prerelease |
bool |
The suffix indicates a pre-release or a final release version |
Return Value
Type |
Description |
string |
The nuget compatible version |