I have a solution that most projects are compiled in .net 4.5 (I use async and tasks).
There are couple of projects that need to be compiled in .net 3.5 since they use SDK that support only .net 3.5.
If my "Common" project is compiled in 4.5, and I have a project with target framework 3.5 that needs it, Is it possible to add reference to the Common ? (e.g my logger interface is at Common and i get it with DI).
Thanks.
Output:
could not be resolved because it was built against the ".NETFramework,Version=v4.5" framework. This is a higher version than the currently targeted framework ".NETFramework,Version=v3.5".