“Could not load file or assembly” error when net462 app references a netstandard1.5 library. But why?
I am trying to figure out what I could be doing wrong in this sample project. I am getting an error when my net462 application references a netstandard1.5 library. The application has a dependency on "System.Collections.Immutable": "1.3.0" , which targets NetStandard 1.0 according to Nuget. The library depends on "NETStandard.Library": "1.6.0" . Am I setting up either of these projects wrong? I would greatly appreciate any insight on this... Here are their project.json : app: { "buildOptions": { "emitEntryPoint": true }, "dependencies": { "SomeLibrary": "1.0.0-*" }, "frameworks": { "net462": {