Website, web application projects and tfsbuild

I have a web application project (wap) that is successfully deployed to the development server by our tfsbuild server.

I want the build server to start our website collection after deployment.

What's the best practice (or ANY practice) for doing this?

0


source to share


2 answers


My solution involved copying the website to the development server at the time of the target.

Once that was done, I ran the web tests that were recorded on this server.



I guess the answer is: build, deploy, write your tests, and then add the tests to the build process.

0


source


I use NAnt for this, although not tfs with Cruise Control. Does tfs support nant? if so it is really easy for me to write targets to get the whole building and test where failing tests => failing builds



0


source







All Articles