Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I debug custom build processes in TFS 2010?

Tags:

tfsbuild

I know my build isn't working, but I can't figure out how to debug it. My only symptom is it only does a get operation for some of the projects in the solution. Setting verbosity to diagnostic tells me nothing, the event log is empty, what gives?

Under TFS 2008 using the barbaric tfsbuild.proj file, you could always execute your build locally and see what was happening. Now, in TFS instead of bunch of spaghetti XML, we have a bunch of spaghetti XAML. Is there a way to execute my build process template locally so I can see what is happening?

How do I debug custom build processes in TFS 2010?

like image 216
Code Silverback Avatar asked Nov 09 '10 22:11

Code Silverback


1 Answers

You can checkout these steps here regarding attaching the VS debugger to the TFSBuildServiceHost and debugging your build template.

like image 73
Kevin McMahon Avatar answered Oct 23 '22 10:10

Kevin McMahon