Setting up MVC deployment

Do Visual Studio 2008 Web Deployment Projects deploy ASP.NET MVC applications? If not, what is the best fit for deploying an ASP.NET MVC application?

Also what is the best way to handle different versions of config files (eg web.config) that will contain different settings depending on what type of build you are deploying, i.e. debug or release?

+2


source to share


2 answers


You can deploy projects using the Build โ†’ Publish menu option . You can publish using http, ftp, or file sharing.



This is not the best choice for you depending on your situation. You can always create your own deployment script to handle any special considerations you have when deploying to your environment.

0


source


Disclaimer: I am talking about something I wrote. He's free right now, but he may not always be



I wrote a dashy for this purpose (to handle multiple configurations and deploy them to your live servers. SVN as your source control system and you need (or be ready to use) a CI system like CruiseControl.NET (or whatever).

0


source







All Articles