we have web applications using MVC3 which all share a library with HtmlHelper Extensions.
Is there a way, to make this shared library which has to reference MVC Assemblies also work with MVC4 Applications without converting the one's existing and without duplicating the shared library?
I Tried setting the MVC references on the shared library to SpecificVersion=false, but then it switches to MVC4 and the MVC3 projects can't use it anymore.
Whenever I try to use MVC3 and MVC4 assemblies side by side, I get an unhandled win32 exception.
Any ideas how to solve this, or is the only way to go either full MVC4 or stay at MVC3? Thanks