The blog has moved to http://jessehouse.com/ ... Many google searches point here so I am leaving it operational, but there will be no new posts.

Thursday, April 9, 2009

UPDATE: NAnt build with TFS changeset as revision number

this is a small revision to a previous post NAnt build with TFS changeset as revision number

apparently there is a limitation on the size of the number used in each segment of a .net assembly version so this is a slight update to the c# code that gets the latest changeset from TFS - changes start at "if(latestChangsetId > 65534)"

public static void ScriptMain(Project project)
{
project.Log(Level.Info, "Connect to " + project.Properties["tfs.server"]);
TeamFoundationServer tfs = new TeamFoundationServer(project.Properties["tfs.server"]);
// Get a reference to Version Control.
Type type = typeof(VersionControlServer);
VersionControlServer versionControl = (VersionControlServer)tfs.GetService(type);
project.Log(Level.Info, "get changesetId for " + project.Properties["tfs.fullpath"]);
IEnumerable changeSets = versionControl.QueryHistory(project.Properties["tfs.fullpath"], VersionSpec.Latest, 0, RecursionType.Full, null, null, null, 1, true, false);
int latestChangesetId = 0;
// there is only one
foreach(Changeset c in changeSets)
{
latestChangesetId = c.ChangesetId;
}
string revision = String.Empty;
if(latestChangsetId > 65534)
{
// use the last 4 numbers only
revision = latestChangesetId.ToString().Substring(latestChangesetId.ToString().Length - 4, 4);
}
else
{
revision = latestChangesetId.ToString();
}
project.Log(Level.Info, "ChangesetId is " + latestChangesetId.ToString());
project.Log(Level.Info, "Revision will be " + revision);
project.Properties["project.version.revision"] = revision;
}


see also AssemblyVersion - BuildNo Limitation

No comments: