4

我试图在包管理器控制台中执行“List-Package”,并在 Nuget 包中出现以下错误。

The term 'List-Package' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included,
 verify that the path is correct and try again.

At line:1 char:13
+ List-Package <<<< 
    + CategoryInfo          : ObjectNotFound: (List-Package:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

我输入了 get-help Nuget 以查看所有可用的 Nuget 命令。但我在结果中看不到“List-Package”。

发生此错误是因为 List-Package最新版本的 Nuget 不再支持命令吗?可能我们需要使用命令Get-package list-package而不是List-Package

是什么导致了这个错误?

4

1 回答 1

4

List-Package是不正确的命令名称。

你应该使用Get-Package命令

查看 docs.nuget.org 的详细信息

于 2011-11-21T18:28:54.527 回答