I searched for this question here, but I did not find the answer.
I have a class library project targeting .NET Core 2.0 and a WPF project targeting .NET Full Framework 4.7. I cannot reference the class library in a WPF project. I get the following error:
Project 'xxxxxxxx' targets '.NETCoreApp, Version = v2.0'. It cannot be referenced by a project intended for ".NETFramework, Version = v4.7".
Is there a way to reference a .NET Core project in the Full Framework alone?
source
share