Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TFS checkin RSS feed

How can I to generate an RSS feed of Team Foundation Server commit messages?

In Visual Studio's Source Control Explorer, the "View History" option produces a nice GUI view. Likewise, the command line

tf history /recursive /stopafter:40 . 

produces a nice GUI view. I'd like an RSS feed that would supply the same, or similar, information -- or even a way to wring some text out of TFS that I can reconstitute into RSS.

This is similar to the question, Sending SVN commits to an RSS feed, but I do have control over the private TFS repository.

like image 699
ESV Avatar asked Oct 01 '08 18:10

ESV


1 Answers

One of the links from Grant's answer seems even better than the original page. It contains source code for ASPX file that generates an RSS feed of TFS checkins which returns information about the most recent N checkins:

http://blogs.msdn.com/jefflu/archive/2005/07/27/443900.aspx

I haven't tried it out yet, and it doesn't appear to include the checkin comment, which is the most important part from my perspective.

like image 186
ESV Avatar answered Oct 12 '22 23:10

ESV