I have a .Net core 2.0 project which needs to reference a .Net 4.6.2 projets (BLL and Entities on the picture) in the same solution on Visual Studio 2017 (v 15.4.4). I saw t
As user magicandre1981 said, you should downgrade from .NET Framework version 4.6.2 to 4.6.1.
Taking a look at the .NET Standard version table, you can see that version 4.6.1 is supported by .NET Standard 2.0 (and thus .NET Core 2.0), but 4.6.2 is not listed (therefore not supported).
For those unable to click through, I took the following screen shot of the table presented on the above linked page:
(image is correct as on Nov 17, 2017)
I'd also recommend taking a look through the documentation for the .NET Standard or at the videos that Immo Landwerth (who is the PM in charge of .NET Standard) has put out about it.
I got two problems: