Skip to content

Instantly share code, notes, and snippets.

View Mozketo's full-sized avatar

Ben Clark-Robinson Mozketo

View GitHub Profile
@Mozketo
Mozketo / gist:1604842
Created January 13, 2012 05:51
C# TFS hints
class TfsConnection
{
public static TfsTeamProjectCollection Connect()
{
string url = "https://xxx:8081/tfs/";
ICredentials credential = CredentialCache.DefaultCredentials;
var server = new TfsTeamProjectCollection(new Uri(url), credential);
return server;