dotnet tool uninstalldotnet tool uninstall

本文内容

本文适用于:✓ .NET Core 2.1 SDK

nameName

dotnet tool uninstall - 从你的计算机上卸载指定的 .NET Core 全局工具

摘要Synopsis

  1. dotnet tool uninstall <PACKAGE_NAME> <-g|--global>
  2. dotnet tool uninstall <PACKAGE_NAME> <--tool-path>
  3. dotnet tool uninstall <-h|--help>

说明Description

dotnet tool uninstall 为你提供一种从计算机上卸载 .NET Core 全局工具的方法。若要使用此命令,需要使用 —global 选项指定要删除用户范围的工具或使用 —tool-path 选项指定安装工具的路径。

自变量Arguments

PACKAGE_NAME

包含要卸载的 .NET Core 全局工具的 NuGet 包的名称/ID。你可以使用 dotnet tool list 命令查找包名称。

选项Options

-g|—global

指定要从用户范围的安装中删除工具。不能与 —tool-path 选项一起使用。如果不指定此选项,则必须指定 —tool-path 选项。

-h|—help

打印出有关命令的简短帮助。

—tool-path <PATH>

指定卸载全局工具的位置。路径可以是绝对的,也可以是相对的。不能与 —global 选项一起使用。如果不指定此选项,则必须指定 —global 选项。

示例Examples

卸载 dotnetsay 全局工具:

dotnet tool uninstall -g dotnetsay

从特定 Windows 文件夹卸载 dotnetsay 全局工具:

dotnet tool uninstall dotnetsay —tool-path c:\global-tools

从特定 Linux/macOS 文件夹卸载 dotnetsay 全局工具:

dotnet tool uninstall dotnetsay —tool-path ~/bin

请参阅See also