diff options
author | Adam Cwyk <8567636+acwyk@users.noreply.github.com> | 2021-11-27 12:23:08 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 17:23:08 -0800 |
commit | 8e5f3db305bb1fc363d3fe98c2d1177f0027a5bc (patch) | |
tree | 918ecd3508db7f3676037fecb95e323af4f52e76 | |
parent | 452ddff763ebbaba40a060006e8290d497e2993a (diff) | |
download | zsh-8e5f3db305bb1fc363d3fe98c2d1177f0027a5bc.tar.gz zsh-8e5f3db305bb1fc363d3fe98c2d1177f0027a5bc.tar.bz2 zsh-8e5f3db305bb1fc363d3fe98c2d1177f0027a5bc.zip |
feat(dotnet): add alias for `dotnet build` command (#10435)
Co-authored-by: Adam Cwyk <git@adamcwyk.dev>
-rw-r--r-- | plugins/dotnet/README.md | 1 | ||||
-rw-r--r-- | plugins/dotnet/dotnet.plugin.zsh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/plugins/dotnet/README.md b/plugins/dotnet/README.md index 7554b4e3c..87dfd8f8d 100644 --- a/plugins/dotnet/README.md +++ b/plugins/dotnet/README.md @@ -21,3 +21,4 @@ plugins=(... dotnet) | 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 | diff --git a/plugins/dotnet/dotnet.plugin.zsh b/plugins/dotnet/dotnet.plugin.zsh index 6bd4b7af8..5bc1587c5 100644 --- a/plugins/dotnet/dotnet.plugin.zsh +++ b/plugins/dotnet/dotnet.plugin.zsh @@ -30,3 +30,4 @@ alias ds='dotnet sln' alias da='dotnet add' alias dp='dotnet pack' alias dng='dotnet nuget' +alias db='dotnet build' |