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 this post, but event with .Net version 4.6.2, I still have the problem.
In my .Net core 2.0 project references, I have:
![](https://www.manongdao.com/static/images/pcload.jpg)
When I try to use a class defined in .Net 4.6.2 projects, I have following error: "Cannot resolve symbole 'BLL'" (for BLL project).
![](https://www.manongdao.com/static/images/pcload.jpg)
Do you have any idea what to do to use .Net 4.6.2 project in a net core 2.0 project?
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:
![](https://www.manongdao.com/static/images/pcload.jpg)
(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.