slandau
slandau

Reputation: 24082

Setup Continuous Integration with Visual Studio 2010 and Team Foundation Server 2010

Is there a good guide on how to do this with these two exact pieces of software? I have found a lot of generalized CI setup guides, but none involving these two exact components.

Upvotes: 1

Views: 3350

Answers (1)

sgriffinusa
sgriffinusa

Reputation: 4221

TFS makes setting up a continuous integration server very simple. You will first need to create a new TFS project. Then you need to configure Visual Studio to use your new project. Finally, you can setup a build for the project within TFS. There is a pretty good blog post about how to do it. The important step is setting the build trigger:

alt text

You can set various build triggers, including a continuous schedule. Obviously, you can get much more complex with the build definition. Deployment options, config options, but hopefully this will be enough to get you started.

Upvotes: 2

Related Questions