Pure.Krome
Pure.Krome

Reputation: 86957

How do I use JSON.Net on a new Mono class library?

I wish to use JSON.Net on a brand spankin new Mono class library (say .. Mono / .NET 4). Of course, this class library will be used by a MonoTouch iPhone/iPad project (also in the same solution).

I'm not sure of the steps I need to do, to use JSON.Net in a Mono Class Library.

The closest I got to this was this SO question .. but it said nothing about how the DLL was made, where it exists, etc.

BTW: I'm also using MonoDevelop for the IDE. This is on a Mac OSX.

Upvotes: 3

Views: 4495

Answers (1)

konrad.kruczynski
konrad.kruczynski

Reputation: 47561

If your mono is new enough, you can in fact use NuGet downloaded from here. You also need some trusted certificates to get it working well - they can be imported using:

mozroots --import --ask-remove

And then you can download the package using NuGet

You can also download the library any other way - no need to recompile the sources as Mono and .NET are binary compatible.

Btw, binaries can be directly downloaded from nuget in a way like that: Json.Net.

Upvotes: 5

Related Questions