tags:

views:

248

answers:

2

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?

+14  A: 

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)

Kurt Schindler
If the server doesn't have SP1, you'll need to bin deploy System.Web.Abstractions, too.
Craig Stuntz
Yep, in addition to System.Web.Routing.dll I believe.
Kurt Schindler
+5  A: 

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).

48klocs