Skip to content

Commit

Permalink
Added code to look for GitTfs.Vs11.dll file first.
Browse files Browse the repository at this point in the history
  • Loading branch information
eeevans authored and sc68cal committed Mar 17, 2012
1 parent 4aaacb5 commit 1a62d73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion GitTfs/Core/TfsInterop/TfsPlugin.cs
Expand Up @@ -18,7 +18,8 @@ public static TfsPlugin Find()
return x.Try("GitTfs.Vs" + explicitVersion, "Sep.Git.Tfs.Vs" + explicitVersion + ".TfsPlugin") ??
x.Fail("Unable to load TFS version specified in GIT_TFS_CLIENT (" + explicitVersion + ")!");
}
return x.Try("GitTfs.Vs2010", "Sep.Git.Tfs.Vs2010.TfsPlugin") ??
return x.Try("GitTfs.Vs11", "Sep.Git.Tfs.Vs11.TfsPlugin") ??
x.Try("GitTfs.Vs2010", "Sep.Git.Tfs.Vs2010.TfsPlugin") ??
x.Try("GitTfs.Vs2008", "Sep.Git.Tfs.Vs2008.TfsPlugin") ??
x.Fail();
}
Expand Down

0 comments on commit 1a62d73

Please sign in to comment.