Navigation Menu

Skip to content

Commit

Permalink
Added a placeholder for Issue #53
Browse files Browse the repository at this point in the history
  • Loading branch information
lprichar committed Dec 11, 2014
1 parent 65e1199 commit a6b4c7e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions TfsServices/Configuration/MyBuildServer.cs
Expand Up @@ -164,6 +164,11 @@ private static void SetInfoFromAssociatedCheckins(IBuildDetail buildDetail, Buil
{
SetInfoFromAssociatedCommits(result, commits);
}
else
{
// todo: Retrieve associated build and get build info from there
//GetBuildAndSetInfo();
}

if (string.IsNullOrEmpty(result.Comment))
{
Expand Down Expand Up @@ -239,4 +244,12 @@ public override int GetHashCode()
return uri.GetHashCode();
}
}

internal class BuildInformationComparer : IComparer<IBuildInformationNode>
{
public int Compare(IBuildInformationNode x, IBuildInformationNode y)
{
return 1;
}
}
}

0 comments on commit a6b4c7e

Please sign in to comment.