How do you query installed nuget packages with the command line interface? -
i need find installed version of package inside ci build script using nuget command line.
the "list" command returns packages nuget.org feed far can tell. want locally installed packages.
i know how vs nuget powershell console. please not answer "use get-package". need nuget.exe.
however if there's way use nuget command plain powershell outside of visual studio acceptable.
nuget list -source http://my.local.feed/
list packages available in local feed, , dir .\packages
within top-level solution folder show packages installed under location (where .\packages
install location have set solution).
from http://docs.nuget.org/docs/reference/command-line-reference#list_command_options , how specify directory nuget packages installed?
Comments
Post a Comment