Skip to content

Commit

Permalink
Add .NET global tool installation instructions
Browse files Browse the repository at this point in the history
Add .NET global tool installation instructions and add fenced code language specifiers to the shell code blocks
  • Loading branch information
asbjornu authored Nov 11, 2020
1 parent 1f309aa commit 5afc278
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,34 @@ GitReleaseManager allows you to:

## Installation

### .NET Global Tool

To install GitReleaseManager as a .NET Global tool, execute:

```sh
dotnet tool install --global GitReleaseManager.Tool
```

### Chocolatey

You can install GitReleaseManager via Chocolatey by executing:

`choco install gitreleasemanager.portable`
```sh
choco install gitreleasemanager.portable
```

**NOTE:**
Depending on which version of Chocolatey you are using, you may be required to confirm the installation of the application. You can avoid this prompt using the following command:

`choco install gitreleasemanager.portable -y`
```sh
choco install gitreleasemanager.portable -y
```

If you are interested in trying out the latest pre-release version of GitReleaseManager then you can use the following installation command:

`choco install gitreleasemanager.portable -source https://www.myget.org/F/grm_develop/ -pre`
```sh
choco install gitreleasemanager.portable -source https://www.myget.org/F/grm_develop/ -pre
```

This uses the public GitReleaseManager feed which is hosted on [MyGet.org](https://www.myget.org/)

Expand Down

0 comments on commit 5afc278

Please sign in to comment.