Using Json in a portable class library

I am trying to load some data into a portable class library. The data is in JSON format. I need parsing and working with this information. Unfortunately, it seems that System.Json is not available. At the same time, I tried to include the Json.Net NuGet package with no luck.

How to work with JSON data in a portable class library?

thanks

+6
source share
2 answers

Json.net pcl is available - if you cannot find the official version of nuget, then the slightly older version is in the mvvmcross json plugin package or in the mvvmcross git repo binaries.

+6
source

JSON.NET Available in PCL, check out these release notes:

The main function of Json.NET, this version is the assembly of the portable class library, accessible through NuGet. This is made possible thanks to NuGet 2.1, which supports portable class libraries. Read more about NuGet 2.1 here .

  • Update NuGet
  • Get JSON.NET
+9
source

All Articles