I'm trying to do some json deserialization on windows phone 7, so I decided to use Newtonsoft.json library, because it seems to support this platform also. Unfortunatelly I'm stuck with these errors:
Error 1 Predefined type 'Microsoft.CSharp.RuntimeBinder.Binder' is not defined or imported
and
Error 4 One or more types required to compile a dynamic expression cannot be found. Are you missing references to Microsoft.CSharp.dll and System.Core.dll?
I found out that I can't just add a reference to Microsoft.CSharp.dll (VS tells me that it wasn't built with Windows Phone runtime) in my project, so what else can be done? I used newtonsoft lib from portable+net40+sl4+wp7+wp8 and then from sl4-windowsphone71 folders in the library. Nothing works.