Bumpy aliases

Cake.Bumpy addin

Contains functionality related to the command line tool Bumpy.

In order to use the commands for this addin, you will need to include the following in your build.cake file to download and reference from NuGet.org:

#tool Bumpy
In addition, you will need to include the following:
#addin Cake.Bumpy

General

BumpyAssign(int, int, BumpySettings)
Alias from Cake.Bumpy addin
Runs "bumpy.exe assign [position] [number]" to assign a given position with a given number for all versions.
BumpyAssign(int, int)
Alias from Cake.Bumpy addin
Runs "bumpy.exe assign [position] [number]" to assign a given position with a given number for all versions.
BumpyEnsure(BumpySettings)
Alias from Cake.Bumpy addin
Runs "bumpy.exe ensure" to check if all versions in a profile are equal.
BumpyEnsure()
Alias from Cake.Bumpy addin
Runs "bumpy.exe ensure" to check if all versions in a profile are equal.
BumpyIncrement(int, BumpySettings)
Alias from Cake.Bumpy addin
Runs "bumpy.exe increment [position]" to increment all versions at the given position by one.
BumpyIncrement(int)
Alias from Cake.Bumpy addin
Runs "bumpy.exe increment [position]" to increment all versions at the given position by one.
BumpyIncrementOnly(int, BumpySettings)
Alias from Cake.Bumpy addin
Runs "bumpy.exe incrementonly [position]" to increment all versions at the given position by one, without updating following components.
BumpyIncrementOnly(int)
Alias from Cake.Bumpy addin
Runs "bumpy.exe incrementonly [position]" to increment all versions at the given position by one, without updating following components.
BumpyLabel(string, BumpySettings)
Alias from Cake.Bumpy addin
Runs "bumpy.exe label [text]" to replace the postfix text of a version.
BumpyLabel(string)
Alias from Cake.Bumpy addin
Runs "bumpy.exe label [text]" to replace the postfix text of a version.
BumpyList(BumpySettings)
Alias from Cake.Bumpy addin
Runs "bumpy.exe list" to list all versions.
BumpyList()
Alias from Cake.Bumpy addin
Runs "bumpy.exe list" to list all versions.
BumpyNew()
Alias from Cake.Bumpy addin
Runs "bumpy.exe new" to create a new configuration file if one does not exist.
BumpyWrite(string, BumpySettings)
Alias from Cake.Bumpy addin
Runs "bumpy.exe write [version]" to overwrite all versions.
BumpyWrite(string)
Alias from Cake.Bumpy addin
Runs "bumpy.exe write [version]" to overwrite all versions.