summaryrefslogtreecommitdiff
path: root/home/.oh-my-zsh/plugins/dotnet
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
parentcbbdeb2f6b40a102a829f0c47cff052937231f00 (diff)
omz
Diffstat (limited to 'home/.oh-my-zsh/plugins/dotnet')
-rw-r--r--home/.oh-my-zsh/plugins/dotnet/README.md26
-rw-r--r--home/.oh-my-zsh/plugins/dotnet/dotnet.plugin.zsh27
2 files changed, 53 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
diff --git a/home/.oh-my-zsh/plugins/dotnet/dotnet.plugin.zsh b/home/.oh-my-zsh/plugins/dotnet/dotnet.plugin.zsh
new file mode 100644
index 0000000..adc1ec6
--- /dev/null
+++ b/home/.oh-my-zsh/plugins/dotnet/dotnet.plugin.zsh
@@ -0,0 +1,27 @@
+# This scripts is copied from (MIT License):
+# https://raw.githubusercontent.com/dotnet/sdk/main/scripts/register-completions.zsh
+
+#compdef dotnet
+_dotnet_completion() {
+ local -a completions=("${(@f)$(dotnet complete "${words}")}")
+ compadd -a completions
+ _files
+}
+
+compdef _dotnet_completion dotnet
+
+# Aliases bellow are here for backwards compatibility
+# added by Shaun Tabone (https://github.com/xontab)
+
+alias dn='dotnet new'
+alias dr='dotnet run'
+alias dt='dotnet test'
+alias dw='dotnet watch'
+alias dwr='dotnet watch run'
+alias dwt='dotnet watch test'
+alias ds='dotnet sln'
+alias da='dotnet add'
+alias dp='dotnet pack'
+alias dng='dotnet nuget'
+alias db='dotnet build'
+alias dres='dotnet restore'