MSDeploy, MSBuild and Continuous Integration
Posted
by stacker
on Stack Overflow
See other posts from Stack Overflow
or by stacker
Published on 2010-05-09T04:48:10Z
Indexed on
2010/05/09
4:58 UTC
Read the original article
Hit count: 1095
What steps need to be taken to deploy a website using Continuous Integration and NAnt.
If I understand it correctly, this is the basic steps:
Build the solution (.sln) with MSBuild. (I don't sure if this steps is required, I think that MSdeploy can build the project itself, but it's good step to be sure that the project is compile).
Deploy the website. First we need to create the "build deployment package" files. Then we can deploy them.
The question is how to get step #2 done.
© Stack Overflow or respective owner