Trying to find out what version I need to get my project.json to pull the libraries I need.
Right now I'm trying to get System.Data
so that I can use a DataSet.
Trying to brute force my way with a Curl:
curl https://api.nuget.org/v3-flatcontainer/system.data/index.json
And I see it is not found...
I was able to get
curl https://api.nuget.org/v3-flatcontainer/system.data.sqlcient/index.json
Where is the documentation for what is available?
https://github.com/aspnet/Home/wiki/Dependency-Resolution
I'm getting pretty close, but still no cigar.
At least I was able to compile!
mcs TestExample.cs -r:System.Data.dll
but not with Dnx.