I have VS2012 and VS2010 installed. I am using first one to create PCL core of my Mobile app in MVVMCross vNext and using VS2010 to open UI.WP7 on WP7 emulator (due to problems with connecting to WCF by VS2012 WP emulator - it can not connect to my network brigde). Everything is going alright until i use this code:
protected void NavigateToClient(ClientDataRepository client) { RequestNavigate(new { key = client.IDKlient + "clients"}); }
On VS2012 is working well but in VS2010 i have exception (i reference to core and mvvmcross pcl by .dll)
"Problem accessing object - most likely this is caused by an anonymous object being generated as Internal - please see Anonymous types and Get accessors on WP7.1?");
I made assembly InternalToVisible with PublicKey, in my core and even in Cirrious.MvvmCross solution but it doesn't help. Is there any hope to get it work? By the way - is every solution has the same PublicTokenKey?