logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Dotnet Tool - Manage .NET Tools | Online Free DevTools by Hexmos

Manage .NET tools quickly with Dotnet Tool. Install, update, and search .NET tools in NuGet using command line. Free online tool, no registration required.

dotnet-tool

Manage .NET tools and search published tools in NuGet. More information: https://learn.microsoft.com/dotnet/core/tools/global-tools.

  • Install a global tool (don’t use --global for local tools):

dotnet tool install {{[-g|--global]}} {{dotnetsay}}

  • Install tools defined in the local tool manifest:

dotnet tool restore

  • Update a specific global tool (don’t use --global for local tools):

dotnet tool update {{[-g|--global]}} {{tool_name}}

  • Uninstall a global tool (don’t use --global for local tools):

dotnet tool uninstall {{[-g|--global]}} {{tool_name}}

  • List installed global tools (don’t use --global for local tools):

dotnet tool list {{[-g|--global]}}

  • Search tools in NuGet:

dotnet tool search {{search_term}}

  • Display help:

dotnet tool {{[-h|--help]}}

See Also