tags:

views:

61

answers:

0

I would like to comfigure the TFS Build to create a work item on compilation error and warning. I do not wants a bug if my project compile with 0 errors and 0 warnings.

I have found the following line in the TFSBuild.proj config file:

<WorkItemFieldValues>
        Symptom=build break;            
        ...
</WorkItemFieldValues>

It creates a workItem just on error. Does anyone know how to include the compilations warnings in the "Symptom" part?

related questions