vote up 3 vote down star

I am trying to build the Json.NET 2.0 library to target the .NET framework version 2.0, and I am getting this error several times. I went to add a reference to System.Linq to the project, but it does not exist in the references list! What should I do?

flag

75% accept rate

2 Answers

vote up 6 vote down check

Json.NET 2.0 does not support .NET 2.0. If you want .NET 2.0 support, use Json.NET 1.3.1.

link|flag
Thanks. I find it disturbing that they have versions of Json.NET called 2.0, 3.0, and 3.5 but they do not correlate with the version of the framework. – Josh Stodola Feb 11 at 19:20
It looks like they're trying to get Json.NET to correspond to the .NET frameworks, but are a little slow in doing so. – Randolpho Feb 11 at 21:23
vote up 4 vote down

System.Linq is a version 3.5 DLL; you'll need to remove references to it to compile in 2.0.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.