We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Welcome to the NugetAutomation wiki!
Open LinqPad connect to nuget odata http://packages.nuget.org/v1/FeedService.svc and run the following script.
http://packages.nuget.org/v1/FeedService.svc
List<V1FeedPackage> items = new List<V1FeedPackage>(); for(int i = 0; i < 5000; i+=40) { var packages = (from p in Packages where p.Id.EndsWith(".TypeScript.DefinitelyTyped") select p).Skip(i).Take(40).ToList(); items.AddRange(packages); ("StartIndex: " + i + " - TotalPackages: " + items.Count).Dump(); } "***************".Dump(); items.Sum(s=>s.VersionDownloadCount).Dump();