2.2.0 • Published 2 years ago

msbump v2.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

msbump

bump

CLI utility to bump versions of dotnet projects.

Usage

You can use npx to execute directly or install globally.

npx msbump --p path/to/project.csproj [major|minor|patch|build]

OR

npm i -g msbump

msbump --p path/to/project.csproj [major|minor|patch|build]

Args

--[path|project|p] required

[major|minor|patch|build] optional ( defaults to build )

--[dry] optional ( perform dry run )

--[current] optional ( like dry run but simply returns the current version )

--[tag] optional ( adds git tag )

Examples

npx msbump --p ./tests/test.csproj
Bumped Version to 1.0.0.1

npx msbump --p ./tests/test.csproj build
Bumped Version to 1.0.0.2

npx msbump --p ./tests/test.csproj patch
Bumped Version to 1.0.1.0

npx msbump --p ./tests/test.csproj minor
Bumped Version to 1.1.0.0

npx msbump --p ./tests/test.csproj major
Bumped Version to 2.0.0.0

# bump and tag 
npx msbump --p ./tests/test.csproj major --tag
Bumped Version to 3.0.0.0

Using Build Targets

<Target Name="BumpBuildVersionOnDebugBuild" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug'">
    <Exec Command="npx msbump --p ./*.csproj build" ContinueOnError="true">
      <Output TaskParameter="ExitCode" PropertyName="ErrorCode" />
    </Exec>
  </Target>
  <Target Name="BumpPatchVersionOnReleaseBuild" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Release'">
    <Exec Command="npx msbump --p ./*.csproj patch" ContinueOnError="true">
      <Output TaskParameter="ExitCode" PropertyName="ErrorCode" />
    </Exec>
  </Target>
2.2.0

2 years ago

2.1.2

2 years ago

2.1.1

2 years ago

2.1.4

2 years ago

2.1.3

2 years ago

2.1.0

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.4

2 years ago

2.0.1

2 years ago

2.0.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago