I am setting up my email alerts in TFS 2010 using the Alerts Explorer from the TFS Power Tools.
I want to receive an email when a build either fails or partially succeeds. The filter seems to be too basic to achieve this.
I have created the filter as follows
"TeamProject" = 'My Project' AND "StatusCode" = 'Failed' OR "StatusCode" = 'PartiallySucceeded'
but obviously this sends me an email whenever any project's build partially succeeds. The filter I actually want is
"TeamProject" = 'My Project' AND ("StatusCode" = 'Failed' OR "StatusCode" = 'PartiallySucceeded')
Is there a way to achieve this? Can I input the value in such a way so it reads IN ('this' or 'that')?
I don't really want to have to create separate email rules for each status I'm interested in if I can help it.