Use a .NET Framework 4.5 DLL in a Framework 4.0 project

I am working on a project that is built on dot net 4.0, and I need to use some .dlls released using dot net framework 4.5. Is there any way to enable and use them in my project? If so, suggest a way. Thanks in advance.

+4
source share
1 answer

You cannot use 4.5 dll in project 4.0. Consider upgrading a project 4.0 or reducing a project 4.5. The upgrade will probably be the easiest, because if 4.5 uses 4.5 functions (if not, then why create a 4.5 project), you will have to rewrite them to 4.0.

+4
source

All Articles