I looked for this question in here but I didn\'t find the answer.
I have a Class Library project targeting .NET Core 2.0 and a WPF project targeting .NET Full Framew
You cannot add a reference to a .NET Core project to a .NET Framework project.
To share code between .NET Core and .NET Framework apps / libraries, the shared project must target .NET Standard. If you create a .NET Standard 2.0 project, it can be used in .NET Framework 4.6.1+ projects and .NET Core 2.0+ projects.