我试图在包管理器控制台中执行“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
是什么导致了这个错误?