I'm trying to satisfy a couple of requirements I have while building an ASP.NET MVC Website.
I've managed to follow the numerous portable area tutorials on the net to allow for drag and drop of a DLL into the WebSite and it's functionality is available.
Is there a way to:
A) version the assemblies as such I can tell a custom controller factory to load a particular version?
B) Allow a portable area to be dropped in isolation as such it's not dependent on the web site itself, and the website does not restart (i.e the DLL isn't dropped into the bin directory). Edit: By isolation this would also mean the project would be in a different build solution and would be distributed separately. Not sure whether this causes other issues
C) The portable areas may have dependencies which the website itself uses, is there a way to load controllers, views/resources in isolation as such I can multiple versions of the dependencies within the overall structure of the website. I tried originally and found controllers could not be run in AppDomains (ASP.Net MVC V1), though this may not be the case now, or someone may have found a way around it.
I'm open to any approach really, just looking for guidance other than use X technology if possible.
I would appreciate any pointers, source code, (critcism on the requirements :)) you can give me.
Thanks, Jamie