diff options
| author | Yunus Emre Akbalık <58446763+YunusAkbalik@users.noreply.github.com> | 2025-05-29 13:49:56 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-29 12:49:56 +0200 |
| commit | 95ef2516697aa764d1d4bb93ad3490584cc118ec (patch) | |
| tree | 156f85d9b9bc7a4e8c99125b4895aa5f52225960 /plugins | |
| parent | 658240f49816bd6ae1e693a383e26b703ef2d0fb (diff) | |
| download | zsh-95ef2516697aa764d1d4bb93ad3490584cc118ec.tar.gz zsh-95ef2516697aa764d1d4bb93ad3490584cc118ec.tar.bz2 zsh-95ef2516697aa764d1d4bb93ad3490584cc118ec.zip | |
feat(dotnet): add `restore` alias (#13146)
Diffstat (limited to 'plugins')
| -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 a15e80577..217c46751 100644 --- a/plugins/dotnet/README.md +++ b/plugins/dotnet/README.md @@ -23,3 +23,4 @@ plugins=(... dotnet) | 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/plugins/dotnet/dotnet.plugin.zsh b/plugins/dotnet/dotnet.plugin.zsh index ed7c55024..adc1ec678 100644 --- a/plugins/dotnet/dotnet.plugin.zsh +++ b/plugins/dotnet/dotnet.plugin.zsh @@ -24,3 +24,4 @@ alias da='dotnet add' alias dp='dotnet pack' alias dng='dotnet nuget' alias db='dotnet build' +alias dres='dotnet restore' |
