Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to send a custom build status email during or after the TFS build, but it doesn't look like the actual compilation status, etc. is known until after the entire process ends. Does anyone know of a way to send a custom email (other than the built-in alert email) that has the true build status?

share|improve this question

2 Answers

up vote 5 down vote accepted

You can use the notification web services in TFS to built an app that will recieve the web service notifications, and then do what ever you want; e.g. request the full build status, parse logs, add a spinning bear.

There are some details here

share|improve this answer
@dhopton The subscription looks like the way to go, since I can subscribe to the event fired once the end-to-end Team Foundation Build process has completed/failed/etc. Thanks for the link. – Emjay Feb 20 '09 at 17:29

Have you looked at the "Build Notification Tray app, which is part of the TFS Power Tools? This is able to give immediate build failure feedback.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.