Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add .NET global tool installation instructions #304

Merged
merged 1 commit into from
Nov 11, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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