I'm trying a MVP implementation with my View being Windows Forms development (project set to .NET v4.6.2) and my model and presenter to be .NET Standard 1.5
I get a error passing the Forms view to the View interface to the Presenter, the error:
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 system cannot find the file specified.
I guess the issue is once the execution is handed to the Standard library the .NET System.Runtime library is not referenced in the .NET standard execution context? if so what do I need in the project.json to include this?
Here is my Project.json file:
{
"version": "1.0.0-*",
"dependencies": {
"NETStandard.Library": "1.5.0-rc2-24027",
"System.Net.Requests": "4.0.10.0"
},
"frameworks": {
"net461": {},
"netstandard1.5": {
"imports": "dnxcore50"
}
}
}