https://github.com/bergmeister/posh-dotnet
PowerShell tab completion and tooltip support for the dotnet CLI.
https://github.com/bergmeister/posh-dotnet
dotnet dotnet-cli posh tabcompletion
Last synced: 5 months ago
JSON representation
PowerShell tab completion and tooltip support for the dotnet CLI.
- Host: GitHub
- URL: https://github.com/bergmeister/posh-dotnet
- Owner: bergmeister
- License: gpl-3.0
- Created: 2017-11-24T23:09:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-27T22:06:53.000Z (over 7 years ago)
- Last Synced: 2024-10-27T11:47:03.594Z (6 months ago)
- Topics: dotnet, dotnet-cli, posh, tabcompletion
- Language: PowerShell
- Homepage:
- Size: 47.9 KB
- Stars: 46
- Watchers: 5
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - bergmeister/posh-dotnet - PowerShell tab completion and tooltip support for the dotnet CLI. (PowerShell)
README
# posh-dotnet [](https://ci.appveyor.com/project/bergmeister/posh-dotnet/branch/master) [](https://ci.appveyor.com/project/bergmeister/posh-dotnet/build/tests) [](https://codecov.io/gh/bergmeister/posh-dotnet) [](http://google.com) [](https://www.gnu.org/licenses/gpl-3.0)
`PowerShell` tab completion for the [dotnet CLI](https://github.com/dotnet/cli).

## Installation
You can install it via the [PSGallery](https://www.powershellgallery.com/packages/posh-dotnet/)
````powershell
if ($PSVersionTable.PSVersion.Major -ge 5) {
Install-Module posh-dotnet -Force
}
else {
Install-Module TabExpansionPlusPlus -Force
Install-Module posh-dotnet -Force
}
````Alternatively you can also use it directly from this repo
````powershell
git clone https://github.com/bergmeister/posh-dotnet.git
cd .\posh-dotnet
Import-Module .\posh-dotnet.psd1
````## Usage
````powershell
Import-Module posh-dotnet
````It has been tested using the dotnet CLI version 1.0.3 and 2.0.3 on `Windows PowerShell 5.1` and `PowerShell Core 6.0 RC` but it should also work down to version 3.0 of `PowerShell`.