ASP.NET Deployment Tool

Before I reinvented the wheel, I wanted to know if there was a similar tool. I want to automate the deployment of our various websites, web services and several databases.

I was thinking of writing an NAnt script and a simple graphical application that would list the goals in an NAnt script and display a list of tasks that could then be turned on / off and executed. Does such a tool already exist?

+4
source share
2 answers

See MsDeploy and Network Deployment Tool I would use MSBuild to bundle them all together.

+2
source

I have used CruiseControl in the past. They have a .NET flavor for it. For us, the / config setting was long, but once everything was set up, it worked pretty well.

+1
source

All Articles