my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.4 KiB

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