Which files need to be marked Copy Local to "True" when deploying a ASP.NET MVC 3 application on a server that does not have ASP.NET MVC 3 installed?

link|improve this question

check new easy way to do this with VS2010 SP1 msdn i.e. answer is none (for the MVC3 references) – MemeDeveloper Aug 18 '11 at 18:04
feedback

2 Answers

up vote 6 down vote accepted

From http://www.hanselman.com/blog/BINDeployingASPNETMVC3WithRazorToAWindowsServerWithoutMVCInstalled.aspx

System.Web.Mvc

Microsoft.Web.Infrastructure

System.Web.Razor

System.Web.WebPages

System.Web.WebPages.Razor

System.Web.Helpers

System.Web.WebPages.Deployment

link|improve this answer
3  
This is no longer correct with the RTM version, System.Web.WebPages.Deployment.dll is now required. – Aaron Weiker Jan 18 '11 at 15:47
3  
Do not deploy System.Web.WebPages.Administration.Dll as that will cause you more issues. – Aaron Weiker Jan 18 '11 at 15:47
This is even easier with SP1, check out or msdn for more info. – MemeDeveloper Aug 18 '11 at 18:03
feedback

Maybe it was because I was deploying with a beta version but for some reason I needed to deploy nuGet.dll as well as Omar's list.

Also See: Scott Gu's blog: http://weblogs.asp.net/scottgu/archive/2011/01/18/running-an-asp-net-mvc-3-app-on-a-web-server-that-doesn-t-have-asp-net-mvc-3-installed.aspx

link|improve this answer
This is because you deployed System.Web.WebPages.Administration.dll – Aaron Weiker Jan 18 '11 at 15:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.