I created in VS2017 two C# projects:
- .NET Standard 1.5 library
- .NET Framework 4.6.2 Console application. (implements Standard 1.5)
I added the reference to the library, but cannot access types from it.
Compiler just complains that it cannot find neither namespace nor class.
Moreover, Studio allows to start the application and then throws:
System.IO.FileNotFoundException: '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.'
So, what am I doing wrong?