ohmyzsh/plugins/dotnet/dotnet.plugin.zsh
Christopher Pfohl ffc4d6fbb2
Add .dotnet tools to PATH
When using `dotnet` with installed global tools this enables users to use any installed tools (`dotnet-trace` for instance) without having to manage the PATH.
2024-08-08 15:36:49 -04:00

29 lines
759 B
Bash

# Enable usage of global dotnet tools.
export PATH="$PATH:$HOME/.dotnet/tools/"
# This script 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'