user335160
user335160

Reputation: 1362

requirements to deploy the mvc 3 application to the server

I want to deploy the application in the Windows Server 2008 R2. But I am wondering if I need to install the .Net Framework 4.0 since the version available in the server is 2.0? Do I need also to install the MVC Framework?

Upvotes: 0

Views: 2405

Answers (2)

linquize
linquize

Reputation: 20366

You may use the ASP.NET MVC3 installer,

or simply copy the required dlls into bin directory of your web application

such as System.Web.Mvc.dll, System.Web.Helpers.dll, System.Web.Razor.dll, System.Web.WebPages.dll, System.Web.WebPages.Razor.dll, System.Web.WebPages.Administration.dll, System.Web.WebPages.Deployment.dll, Microsoft.Web.Infrastructure.dll

Upvotes: 1

Related Questions