dotnet tool uninstall

dotnet tool uninstall --help

eg@debian:~$ dotnet tool uninstall --help
Description:
  Uninstall a global tool or local tool.

Usage:
  dotnet tool uninstall <PACKAGE_ID> [options]

Arguments:
  <PACKAGE_ID>  The NuGet Package Id of the tool to install.

Options:
  -g, --global            Uninstall the tool from the current user's tools directory.
  --local                 Uninstall the tool and remove it from the local tool manifest.
  --tool-path <PATH>      The directory containing the tool to uninstall.
  --tool-manifest <PATH>  Path to the manifest file.
  -?, -h, --help          Show command line help.

dotnet tool uninstall --global <nuget_package_id>

eg@debian:~$ dotnet tool uninstall --global ProjectVersioning.DotNet.Cli
Tool 'projectversioning.dotnet.cli' (version '5.0.0') was successfully uninstalled.

Last updated