Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

using Json in Portable Class Library

I'm attempting to load some data in a portable class library. The data is in JSON format. I need parse and work with this information. Unfortunately, it doesn't appear that System.Json is available. At the same time, I tried to include the Json.Net NuGet package without any luck.

How does one work with JSON data in a portable class library?

Thank you

like image 226
SPA Developer Avatar asked Apr 19 '13 21:04

SPA Developer


1 Answers

JSON.NET is available in PCL, check these release notes:

Json.NET's major new feature this release is the portable class library assembly is available over NuGet. This is made possible by NuGet 2.1 supporting portable class libraries. Read more about NuGet 2.1 here.

  • Update NuGet
  • Get JSON.NET
like image 105
illegal-immigrant Avatar answered Sep 18 '22 02:09

illegal-immigrant