By default in Team Build 2008 a workitem is created when a build fails. Because we're using continuous integration, a lot's of build are triggered before a failure is fixed. This means we mostly end up with a lot of workitems pointing at the same problem. And as all this workitems are assigned to me, I want to get rid of it ;-)
Removing the creation is actually quit easy. Open your TFSBuild.proj file and inside the PropertyGroup add the following line <SkipWorkItemCreation>true</SkipWorkItemCreation>
Removing the creation is actually quit easy. Open your TFSBuild.proj file and inside the PropertyGroup add the following line <SkipWorkItemCreation>true</SkipWorkItemCreation>