TFS and msbuild version number with last changeset

14,831

Solution 1

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)" />

Solution 2

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.

Solution 3

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.

Share:
14,831
Leszek Wachowicz
Author by

Leszek Wachowicz

Building .Net App's with nANT, msbuild, cc.net...just do that: Now Deploying loads of Banking Applications

Updated on June 29, 2022

Comments

  • Leszek Wachowicz
    Leszek Wachowicz almost 2 years

    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??