如何使用命令行界面查询已安装的nuget包?

时间:2014-02-06 01:08:29

标签: nuget

我需要使用nuget命令行在CI构建脚本中找到已安装的软件包版本。

就我所知,“list”命令从nuget.org提要返回所有包。我只想要本地安装的软件包。

我知道如何使用VS nuget powershell控制台执行此操作。请不要回答“使用get-package”。我需要使用nuget.exe。

但是,如果有一种方法可以使用visual studio以外的plain powershell中的nuget命令,那将是可以接受的。

1 个答案:

答案 0 :(得分:0)

nuget list -Source http://my.local.feed/将列出本地 Feed中可用的包,而顶级解决方案文件夹中的dir .\packages将显示在该位置下安装的包(其中{{ 1}}是您为解决方案设置的安装位置。

来自http://docs.nuget.org/docs/reference/command-line-reference#List_Command_OptionsHow do I specify the directory where NuGet packages are installed?