Conversation
Notices
-
Verius (verius@community.highlandarrow.com)'s status on Saturday, 23-Dec-2017 12:11:51 EST Verius
It seems the best way to search for nuget packages with proper filtering and such is to use Powershell. That's kinda cool and sad at the same time. -
Verius (verius@community.highlandarrow.com)'s status on Saturday, 23-Dec-2017 12:18:28 EST Verius
Listing packages with parser in the description: ` $pkgs | where { $_.Summary -ilike "*parser*" } | sort -Descending { [Int]::Parse($_.Metadata["downloadCount"]) } | out-gridview`
-