Requirements for installing the ASP.NET MVC runtime on the test server

I have an ASP.NET MVC application and I deployed it locally in my inbox. Now, if I want to deploy it to the Test server (which is a tightly controlled environment), what do I need to install on the test server at least - that is, on top of the preinstalled ASP.NET 2.0 and. NET

I need the ASP.NET MVC at runtime to be wasntall - obviously, I will not be allowed to install any VS.NET or developer-specific MVC objects. This should be the minimum runtime required to run the ASP.NET MVC application and nothing more.

Where can I get such an installer? Somewhere on the MS website?

Thanks.

+5
source share
4 answers

Besides having the latest version of the .NET framework ( 3.5 sp1 ), you may only need to configure your IIS depending on the version in which you work.

You can read this great blog post by Phil Haack and also talk about what should be in BIN.

Here is a great writeup for what is required.

+1
source

During beta testing, Scott Hanslemann wrote details about deploying an ASP.NET MVC application on a .NET 2.0 server:

Deploy ASP.NET MVC on ASP.NET 2.0

This will do the job if you cannot upgrade the server to .NET 3.5 SP1.

+1
source

, , , , - BIN. BIN DLL BIN , Medium Trust. .

, , .:

Bean Deployment ASP.NET MVC
http://haacked.com/archive/2008/11/03/bin-deploy-aspnetmvc.aspx

0
source

All Articles