BumpyAliases.

BumpyIncrementOnly(ICakeContext, int, BumpySettings) Method

Summary

Runs "bumpy.exe incrementonly [position]" to increment all versions at the given position by one, without updating following components.
Assembly
Cake.Bumpy.dll
Namespace
Cake.Bumpy
Containing Type
BumpyAliases

Syntax

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

Examples

// e.g. 1.0.3.0 -> 1.1.3.0
BumpyIncrementOnly(2, new BumpySettings() { Profile = "my_profile" });

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

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

Return Value

Type Description
void