TFS and msbuild version number with last changeset

2019-01-17 16:22发布

I want to create a build number which looks like Major.minor.Date.LastChangeSetInTFS, the problem is how to get last changeset number from the TFS. Is there any property, or something??

4条回答
倾城 Initia
2楼-- · 2019-01-17 17:15

Check out following extension projects. You'll find about 5 different ways to solve your problem.

  • MSBuild Extension Pack - actively maintained, this extension provides over 280 tasks
  • MSBuild Community Tasks Project - not maintained since 2007, this set of ~90 tasks still has a few unique tasks, namely the flat-file-based Version task
  • SDC Tasks Library - not maintained since Aug 2008, this extension have been absorbed into MSBuild Extension Pack. If there's something you can't find in MSBuild Extension Pack, check this one out, with its portfolio of 300+ tasks chances are, it may have what you need.
查看更多
兄弟一词,经得起流年.
3楼-- · 2019-01-17 17:19

Sorry, I cannot comment on the latest answer.

The TfsVersion task in the form you provided will only give you the latest changeset number in the $(SolutionRoot).

If you have something newer in $(SolutionRoot)\subdir, the provided solution will not work, as it will give you the latest from the $(SolutionRoot), not from $(SolutionRoot)\subdir as you would have wanted.

I use the tf changeset /latest /i and it works fine for me.

查看更多
虎瘦雄心在
4楼-- · 2019-01-17 17:22

OK finally I've found a solution. Here's a task that will provide you the latest changeset number and create a property to insert it in an Assembly info build number. The main problem was in the missing TfsLibraryLocation property (without it, it should be pointing to libraries in GAC, but it didn't)

<Target Name="GetVersionChangeSet">
<TfsVersion
  TfsLibraryLocation="C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies"      
  LocalPath="$(SolutionRoot)">
  <Output TaskParameter="Changeset" PropertyName="ChangesetNumber"/>
</TfsVersion>
<Message Text="TFS ChangeSetNumber: $(ChangesetNumber)" />

查看更多
Animai°情兽
5楼-- · 2019-01-17 17:23

According to a comment on this page you can use the command line tf changeset /latest /i but I can't verify that from home.

查看更多
登录 后发表回答