.\" Automatically generated by Pandoc 2.2.1 .\" .TH "dotnet tool uninstall command \- .NET Core CLI" "1" "" "" ".NET Core" .hy .SH dotnet tool uninstall .PP .SH NAME .PP \f[C]dotnet\ tool\ uninstall\f[] \- Uninstalls the specified .NET Core Global Tool from your machine. .SH SYNOPSIS .IP .nf \f[C] dotnet\ tool\ uninstall\ \ <\-g|\-\-global> dotnet\ tool\ uninstall\ \ <\-\-tool\-path> dotnet\ tool\ uninstall\ <\-h|\-\-help> \f[] .fi .SH DESCRIPTION .PP The \f[C]dotnet\ tool\ uninstall\f[] command provides a way for you to uninstall .NET Core Global Tools from your machine. To use the command, you either have to specify that you want to remove a user\-wide tool using the \f[C]\-\-global\f[] option or specify a path to where the tool is installed using the \f[C]\-\-tool\-path\f[] option. .SS Arguments .PP \f[C]PACKAGE_NAME\f[] .PP Name/ID of the NuGet package that contains the .NET Core Global Tool to uninstall. You can find the package name using the dotnet tool list command. .SH OPTIONS .PP \f[C]\-g|\-\-global\f[] .PP Specifies that the tool to be removed is from a user\-wide installation. Can't be combined with the \f[C]\-\-tool\-path\f[] option. If you don't specify this option, you must specify the \f[C]\-\-tool\-path\f[] option. .PP \f[C]\-h|\-\-help\f[] .PP Prints out a short help for the command. .PP \f[C]\-\-tool\-path\ \f[] .PP Specifies the location where to uninstall the Global Tool. PATH can be absolute or relative. Can't be combined with the \f[C]\-\-global\f[] option. If you don't specify this option, you must specify the \f[C]\-\-global\f[] option. .SH EXAMPLES .PP Uninstalls the dotnetsay Global Tool: .PP \f[C]dotnet\ tool\ uninstall\ \-g\ dotnetsay\f[] .PP Uninstalls the dotnetsay Global Tool from a specific Windows folder: .PP \f[C]dotnet\ tool\ uninstall\ dotnetsay\ \-\-tool\-path\ c:\\global\-tools\f[] .PP Uninstalls the dotnetsay Global Tool from a specific Linux/macOS folder: .PP \f[C]dotnet\ tool\ uninstall\ dotnetsay\ \-\-tool\-path\ ~/bin\f[] .SS See also .PP \&.NET Core Global Tools .SH AUTHORS mairaw.