Good resources to learn about MSBuild and Continuous integration with TFS

msbuildtfs

I am relatively new to MSBuild and am looking out for good resources to learn more about MSBuild and CI with TFS. Specifically I am looking out for the following specific tasks

  • Take latest from TFS whenever a checkin happens
  • Build the solution
  • Run the code analysis
  • Run Unit test cases
  • On success deploy the project to the drop location
  • Label the build

I am not looking for any reference to any books. Online resources will be good. I did google for this, but was not able to get and end-to-end tasks for this.

Any pointers in this direction will be appreciated.

Edit:
Also some good resources to custom MSBuild task will be helpful.

Best Answer

This is where I first started.

Edit

I don't mean to be flippant but MSDN really is a good starting place for MSBuild and most things .NET related.

Related Topic