Is there a way to list all packages available through the NuGet command line interface.

When I use the following command:

Get-Package -Remote

In the package manager console, it only lists the first 100 packages.

Thank you

Eric

link|improve this question
feedback

3 Answers

Get-Package -ListAvailable  

or

Get-Package -ListAvailable -Filter NHibernate
link|improve this answer
feedback

We enabled server side paging on the odata feed which has a page limit of 100. We've fixed the client in the next version of NuGet to get all packages even with the server limit. More info here http://nuget.codeplex.com/workitem/510

link|improve this answer
1  
You can try running 1.1 by installing it from ci.nuget.org:8080/guestAuth/repository/download/bt4/… – David Ebbo Jan 21 '11 at 6:32
feedback

List-Package -Remote | Out-GridView

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.