So I have a .net core 3.1 project and a WCF in .net framework 4.7.2. I need to reference the .net core dll in the WCF project but I get this error:
Project targets 'netcoreapp3.1'. It cannot be referenced by a project that targets '.NETFramework,Version=v4.7.2'.
I tried to add a .net standard project to communicate with both projects but I still get an error:
Project targets 'netcoreapp3.1'. It cannot be referenced by a project that targets '.NETStandard,Version=v2.0'.
What can I do to reference .net core dll in WCF .net framework?