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