Reputation: 9171
For Cruise Control, I have CCTray that sits in my taskbar and lets me know if builds are happening or builds are breaking.
Does TFS have anything like this?
Upvotes: 8
Views: 1857
Reputation: 15685
AnyStatus is another tool that supports multiple CI platforms, including Visual Studio vNext. It comes as a Visual Studio plug-in, and also as a Windows program (with tray icon and notifications).
More details here: https://stackoverflow.com/a/48291894/3063884
Upvotes: 3
Reputation: 15685
UPDATE 2017-06-21: CatLight no longer has a free edition, unless used with an open source project. Details: https://catlight.io/editions
Visual Studio has an included application called "Build Notifications". This tool allows a (close-to) real-time status to be displayed of the current build status across one or more builds on the TFS Server. However it only works with XAML based builds, which are deprecated in favour of vNext builds.
There's a 3rd-party tool that does Build Status, notifications, bug monitoring and more for TFS (both XAML and vNext builds) and other systems (such as Jenkins). It's called CatLight and there's a free version that works with up to 10 builds - https://catlight.io/editions.
It is configured in a similar manner to CCTray, and is very easy to use.
Here are some screen-shots:
Upvotes: 3
Reputation: 2982
Or Start -> All Programs -> Visual Studio 2010 -> Team Foundation Server Tools -> Build Notifications
Personally, I find the Build Notifications app to be pretty terrible. It is slow for one. I find it better to just create email alerts whenever anything happens with a build. They are much more real time.
Edit: I just noticed you use TFS 2008. I don't have it installed to check but it should be roughly in the same location.
Edit 2: I realized the tool comes with TFS Power Tools. Find it here: http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=15836
Upvotes: 7
Reputation: 428
You can find Notification application here "C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\BuildNotification.exe"
Upvotes: 1