0

试图找出我需要什么版本才能让我的 project.json 提取我需要的库。

现在我正试图System.Data让我可以使用数据集。

试图用卷曲蛮力我的方式:

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。

4

1 回答 1

1

我认为System.Data只是一个桌面CLR,GAC-ed程序集。因此,您必须将其添加到类似于此示例的frameworkAssemblies部分: https ://github.com/aspnet/dnx/blob/7ac7929aa575e17b3c271e4a7a0c164418de0395/misc/ProjectToProject/src/P1/project.json#L9-L12project.json

除非您找到此库的替代品,否则您可能无法以 CoreCLR 为目标。

于 2016-01-12T07:29:02.713 回答