Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does ASP.NET MVC need to be installed on my production web server?

Tags:

asp.net-mvc

My IT folks don't like to install software on their precious servers unless they must. To that extent, does the server that serves my ASP.NET MVC application need to have the MVC 1.0 Framework on it in addition to .NET 3.5 sp 1 Framework?

like image 922
JMP Avatar asked Aug 17 '09 17:08

JMP


2 Answers

Nope. You can deploy the System.Web.Mvc.dll to your application's bin directory if MVC has not been installed on the server. The only requirement is that the server have .NET Framework 3.5 (preferably with SP1)

like image 163
Kurt Schindler Avatar answered Oct 03 '22 20:10

Kurt Schindler


Phil Haack put together an article on bin deploying MVC apps here. It mentions the ASP.Net MVC beta drop, but it still works just fine (given the caveat that .Net 3.5's installed).

like image 40
48klocs Avatar answered Oct 03 '22 19:10

48klocs