Table of Contents

Git2SemVer.Tool - Getting Started

Current Version

Prerequisites

Git2SemVer requires:

  • git CLI to be executable from any project directory.
  • dotnet CLI to be executable from any project directory.

Known compatibility:

  • dotnet.exe 8.0.403 or later.
  • git 2.41.0 or later.
  • Windows 11
  • Ubuntu 20.04 LTS

Installing

To install:

dotnet tool install --global NoeticTools.Git2SemVer.Tool

To update the tool to the latest:

dotnet tool update NoeticTools.Git2SemVer.Tool --global

Once installed the tool is available as git2semver. To test the install, run the command:

git2semver --version

Quick start

To see versioning information, in your solution's directory, run:

dotnet versioning run

For more information see versioning.

To generate a changelog, in your solution's directory, run:

dotnet changelog

For more information see changelog generation.

To investiage other commands use the --help option or view all commands here.

Uninstalling

dotnet tool uninstall NoeticTools.Git2SemVer.Tool --global