xamarin portable library and Json.net

json.net, xamarin

Solution

Nuget is probably adding a reference to the `portable-net45+wp80+win8` portable assembly for Json.NET, which is incompatible with the current versions of Xamarin. To get things working you can manually switch the reference to use `portable-net40+sl4+wp7+win8`

Problem

I am not able to use Json.net in the portable library. I set the portable library to use profile 4.5 -78. It compile fine but during runtime, it throws file not found exception. Any body encountered the same issue?

Original source