Question

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

Was it helpful?

Solution

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

OTHER TIPS

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.

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.

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.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top