Back to Ohmyzsh

.NET CLI plugin

plugins/dotnet/README.md

latest1.5 KB
Original Source

.NET CLI plugin

This plugin provides completion and useful aliases for .NET CLI.

To use it, add dotnet to the plugins array in your zshrc file.

plugins=(... dotnet)

Aliases

AliasCommandDescription
dndotnet newCreate a new .NET project or file.
drdotnet runBuild and run a .NET project output.
dtdotnet testRun unit tests using the test runner specified in a .NET project.
dwdotnet watchWatch for source file changes and restart the dotnet command.
dwrdotnet watch runWatch for source file changes and restart the run command.
dwtdotnet watch testWatch for source file changes and restart the test command.
dsdotnet slnModify Visual Studio solution files.
dadotnet addAdd a package or reference to a .NET project.
dpdotnet packCreate a NuGet package.
dngdotnet nugetProvides additional NuGet commands.
dbdotnet buildBuild a .NET project
dresdotnet restoreRestore dependencies and project-specific tools for a project.