]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/dotnet/README.md
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / dotnet / README.md
1 # .NET Core CLI plugin
2
3 This plugin provides completion and useful aliases for [.NET Core CLI](https://dotnet.microsoft.com/).
4
5 To use it, add `dotnet` to the plugins array in your zshrc file.
6
7 ```
8 plugins=(... dotnet)
9 ```
10
11 ## Aliases
12
13 | Alias | Command          | Description                                                       |
14 |-------|------------------|-------------------------------------------------------------------|
15 | dn    | dotnet new       | Create a new .NET project or file.                                |
16 | dr    | dotnet run       | Build and run a .NET project output.                              |
17 | dt    | dotnet test      | Run unit tests using the test runner specified in a .NET project. |
18 | dw    | dotnet watch     | Watch for source file changes and restart the dotnet command.     |
19 | dwr   | dotnet watch run | Watch for source file changes and restart the `run` command.      |
20 | ds    | dotnet sln       | Modify Visual Studio solution files.                              |
21 | da    | dotnet add       | Add a package or reference to a .NET project.                     |
22 | dp    | dotnet pack      | Create a NuGet package.                                           |
23 | dng   | dotnet nuget     | Provides additional NuGet commands.                               |
24 | db    | dotnet build     | Build a .NET project                                              |