summaryrefslogtreecommitdiff
path: root/home/.oh-my-zsh/plugins/dotnet/README.md
diff options
context:
space:
mode:
authornavewindre <boneyaard@gmail.com>2025-07-13 06:42:05 +0200
committernavewindre <boneyaard@gmail.com>2025-07-13 06:42:05 +0200
commit02f14a9cb152561a5e44062aac79f3b700403b40 (patch)
tree2db8ebda3b7f6f8777783aeb5c60018e6e1359d8 /home/.oh-my-zsh/plugins/dotnet/README.md
parentcbbdeb2f6b40a102a829f0c47cff052937231f00 (diff)
omz
Diffstat (limited to 'home/.oh-my-zsh/plugins/dotnet/README.md')
-rw-r--r--home/.oh-my-zsh/plugins/dotnet/README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/home/.oh-my-zsh/plugins/dotnet/README.md b/home/.oh-my-zsh/plugins/dotnet/README.md
new file mode 100644
index 0000000..217c467
--- /dev/null
+++ b/home/.oh-my-zsh/plugins/dotnet/README.md
@@ -0,0 +1,26 @@
+# .NET Core CLI plugin
+
+This plugin provides completion and useful aliases for [.NET Core CLI](https://dotnet.microsoft.com/).
+
+To use it, add `dotnet` to the plugins array in your zshrc file.
+
+```
+plugins=(... dotnet)
+```
+
+## Aliases
+
+| Alias | Command | Description |
+|-------|------------------|-------------------------------------------------------------------|
+| dn | dotnet new | Create a new .NET project or file. |
+| dr | dotnet run | Build and run a .NET project output. |
+| dt | dotnet test | Run unit tests using the test runner specified in a .NET project. |
+| dw | dotnet watch | Watch for source file changes and restart the dotnet command. |
+| dwr | dotnet watch run | Watch for source file changes and restart the `run` command. |
+| dwt | dotnet watch test| Watch for source file changes and restart the `test` command. |
+| ds | dotnet sln | Modify Visual Studio solution files. |
+| da | dotnet add | Add a package or reference to a .NET project. |
+| dp | dotnet pack | Create a NuGet package. |
+| dng | dotnet nuget | Provides additional NuGet commands. |
+| db | dotnet build | Build a .NET project |
+| dres | dotnet restore | Restore dependencies and project-specific tools for a project. | \ No newline at end of file