I’ve mvc3.0 (.net 4.0) application that needs to be deployed to windows server 2008.
Could some one please help with my queries below?
-
Do I need to install MVC 3.0 on server if I’ve referenced all MVC dll (with Copy Local set to true?)
-
If I had MVC 2.0 installed on web server, does IIS picks MVC2.0 dll or MVC 3 given step 1 scenario above?
-
When does IIS looks at DLL vs. BIN folder?
Thanks heaps.
No, you could
bin deployyour application.Assuming you have placed proper
assembly binding redirectsin your web.config It will pick MVC 3:When the application starts, or when first required (assuming some assemblies could be dynamically loaded at runtime).