Hi everyone
I'm having a hard time creating my first UWP app with Xamarin Forms.
When I first created it, just for testing purpose, I ran the blank solution and everything worked fine, both in Local Machine and in the Emulator.
I added the references for my solution that's already running in Android:
"Autofac": "4.0.0",
"Expressmapper": "1.8.3",
"Microsoft.Azure.Mobile.Client": "3.0.3",
"Microsoft.Azure.Mobile.Client.SQLiteStore": "2.1.1",
"Microsoft.NETCore.UniversalWindowsPlatform": "5.1.0",
"Xamarin.Forms": "2.3.2.127",
"Xamarin.Forms.Maps": "2.3.2.127"
And at this moment if I try to run the solution I get this error after being deployed when it starts to run:
_An exception of type 'System.IO.FileLoadException' occurred in mscorlib.ni.dll but was not handled in user code
Additional information: Could not load file or assembly 'System.Runtime, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)_
I have no reference of System.Runtime in my project, and if I check the bin folder for the project, indeed, the System.Runtime.dll version is not 4.1.0 but 4.6.23123.0
Anyone got a clue about this? It's 2 days I've wasted trying to fix this error...
Cheers!