BumpyAliases.

BumpyLabel(ICakeContext, string) Method

Summary

Runs "bumpy.exe label [text]" to replace the postfix text of a version.
Assembly
Cake.Bumpy.dll
Namespace
Cake.Bumpy
Containing Type
BumpyAliases

Syntax

public static void BumpyLabel(this ICakeContext context, string text)

Examples

// e.g. 1.0.0-alpha -> 1.0.0-beta
BumpyLabel("-beta");

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
text string The postfix version text.

Return Value

Type Description
void