BumpyAliases.

BumpyAssign(ICakeContext, int, int, BumpySettings) Method

Summary

Runs "bumpy.exe assign [position] [number]" to assign a given position with a given number for all versions.
Assembly
Cake.Bumpy.dll
Namespace
Cake.Bumpy
Containing Type
BumpyAliases

Syntax

public static void BumpyAssign(this ICakeContext context, int position, int number, BumpySettings settings)

Examples

// e.g. 1.0.0.0 -> 1.42.0.0
BumpyAssign(2, 42, new BumpySettings() { Profile = "my_profile" });

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
position int The position.
number int The version number part.
settings BumpySettings The tool settings.

Return Value

Type Description
void