试图找出我需要什么版本来获取我的project.json以获取我需要的库。
现在我正试图获取System.Data
以便我可以使用数据集。
试图用Curl强行勉强:
curl https://api.nuget.org/v3-flatcontainer/system.data/index.json
我发现它没有找到......
我能够得到
curl https://api.nuget.org/v3-flatcontainer/system.data.sqlcient/index.json
可用资料的文件在哪里?
https://github.com/aspnet/Home/wiki/Dependency-Resolution
我变得非常接近,但仍然没有雪茄。
至少我能够编译!
mcs TestExample.cs -r:System.Data.dll
但不是Dnx。
答案 0 :(得分:1)
我认为System.Data
只是桌面CLR,GAC编译程序集。因此,您必须在frameworkAssemblies
中添加project.json
部分,类似于此示例:https://github.com/aspnet/dnx/blob/7ac7929aa575e17b3c271e4a7a0c164418de0395/misc/ProjectToProject/src/P1/project.json#L9-L12
除非您找到此库的替代品,否则您可能无法定位CoreCLR。