Hope provide some new options to better update dotnet tools #13017
Open
Description
opened on Aug 21, 2020
Issue Title
Hope provide some new options to better update dotnet tools
General
Currently, there is only dotnet tool update <PACKAGE_ID>
to update single package and dotnet tool list
to list all installed tools
Hope there is some more cmd:
dotnet tool update --all
to batch update all tools to last version(likenpm update
without pkgid), and can be be combined with--include-preview
;dotnet tool update --include-preview
to allow update tool to an preview version(excepted unlisted versions), and can be be combined with--all
;dotnet tool list --outdated
to show all tools can be updated, and the current version and the version to be updated (likenpm outdated
), and can also be be combined with--include-preview
;
Activity