English 中文(简体)
TFS 2008 Build Release Note Like Report
原标题:
  • 时间:2009-12-02 16:36:57
  •  标签:
  • tfs
  • tfsbuild

I would like to get some visibility of what changes have gone into our TFS build. Is there some way of finding out all of the resolved work items that have gone into the last X number of builds up to a certain date?

Could this be done by creating some kind of TFS report or query. If so, has this been done before?

[UPDATE]

I have discovered how to find all work items related to a single build. You can set up a work item query by specifying the Integration Build as follows:

TeamProject = @Project
State = Resolved
Integration Build = MyBuild_200912_02.01

However this is useless to me as we carry out builds every hour.

问题回答

Yes, but it s not easy. You ll have to write a decent amount of code to crawl the TFS object model. Reply if you really want to pursue this route.

While the results aren t as precise, it s much easier to make a query along the lines of:

Team Project = @Project
Resolved Date >= 12/2/2009

I played around with the work item queries and it turns out that it is quite simple to do. Simply use the work item query below and you will get all resolved work items in your build up to a certain date.

Team Project = @Project
Integration Build Contains [Build Name]
State = Resolved
Resolved Date >= @Today - 365




相关问题
Why not use TFS as a build / CI solution?

Currently our build solution is set up using TFS + MS Build scripts. TFS is also being used as a CI server. I ve seen several posts on this site telling people about other CI solutions. Are there ...

Get files from TFS under Linux [closed]

is there a free (command line) tool for linux which with I can get all files from a TFS-Repository (no Check in / Check out required - only get actual version)?

upgrading tfs 2008 sp1 to use sql server 2008

I have an instance of tfs 2008 supported by sql server 2005. I want to change the sql server machine by doing a restore based move. I also want to change the version of sql server to 2008. I know ...

Using Git in a TFS shop

Using Git at home has spoiled me - I now find using TFS at work to be a bit of a drag and want to explore the possibility of using Git locally and syncing somehow with TFS. I figure there are a few ...

TFSReg in 2010 Beta 2?

does anybody know what is the equivalent of the TFSReg.exe command-line tool in 2010 Beta 2? I cannot find it anywhere, I searched the entire Program Files tree. Was it renamed? Moved? Replaced by ...

热门标签