Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

3 Answers

Get-Package -ListAvailable  

or

Get-Package -ListAvailable -Filter NHibernate
share|improve this answer

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

share|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

List-Package -Remote | Out-GridView

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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