Created
July 23, 2014 17:48
-
-
Save takemyoxygen/322cc7db9e017510a906 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#r "../packages/Nuget.Core.2.8.2/lib/net40-Client/Nuget.Core.dll" | |
#r "System.Xml.Linq" | |
open NuGet | |
let repository = PackageRepositoryFactory.Default.CreateRepository "https://nuget.org/api/v2" | |
let aspnet = query { | |
for p in repository.GetPackages() do | |
where (p.Title.Contains "ASP.NET") | |
count | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment