Thunder Soul
Thunder Soul

Reputation: 13

MS Unit Continuous Integration with TFS

I'm tasked with creating a Continuous Integration build for our project with TFS, and one of the requirements is to create unit test continuous integration with MS Unit. How can I set up TFS to use continuous integration with MS Unit?

Thank you!

Upvotes: 0

Views: 314

Answers (1)

sunil
sunil

Reputation: 5168

Go to "Team Explorer" in Visual studio. In the Drop down list there is a "Build options". Once you select it you should find "New Build Definition". This is your starting point. Here you will find various configurable points like In Trigger tab: Manual/Continuous etc. In Process tab: "Disable Test", "MS Build arguments" etc.

Here is the blog post I followed to set up my build environment. http://vishaljoshi.blogspot.com/2010/11/team-build-web-deployment-web-deploy-vs.html (Keep in mind that you need to enable some IIS settings to get continuous deployment to work)

Upvotes: 1

Related Questions