2
我有一個控制檯應用程序,需要從源代碼管理(TFS)下載一些文件。但是在使用下面的代碼時,VersionControlServer
服務爲空。由於這個原因,我無法下載我需要的文件。無法從TFS獲取VersionControlServer服務
TfsTeamProjectCollection tpc = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri(UrlSite));
tpc.EnsureAuthenticated();
bool hasAuthenticated = tpc.HasAuthenticated; // true
var versionControl2 = tpc.GetService<VersionControlServer>(); // null
var buildServer2 = tpc.GetService<IBuildServer>(); // successful initialization
var workItemStore2 = tpc.GetService<WorkItemStore>(); // successful initialization
沒有。這不行! – user3231442
什麼部分不起作用?你有沒有找到你的URL到tfs DefaultCollection並在第一行設置? – Shiv