无法加载文件或程序集“Microsoft.VisualStudio.Services.Common,Version = 12.0.21005.1,Culture = neutral,PublicKeyToken = b03f5f7f11d50a3a”

时间:2018-01-18 10:41:39

标签: c# .net visual-studio-2015 tfs

当我尝试使用下面的代码连接到我的TFS服务器(使用C#)时,我不断收到异常消息Could not load file or assembly "Microsoft.VisualStudio.Services.Common, Version=12.0.21005.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a

Uri tfsUri = (args.Length < 1) ? 
new Uri("http://Server:Port/VDir") : new Uri(args[0]);
TfsConfigurationServer configurationServer = TfsConfigurationServerFactory.GetConfigurationServer(tfsUri);

代码参考:

https://msdn.microsoft.com/en-us/library/bb286958(v=vs.120).aspx

在我的本地系统或互联网上找不到此dll - “ Microsoft.VisualStudio.Services.Common ”。

你可以帮我解决一下我缺少的东西吗?

1 个答案:

答案 0 :(得分:7)

我测试了一段代码,eveything正常工作。

那么,你是如何创建项目的?您是否安装了Nuget软件包:Microsoft.TeamFoundationServer.ExtendedClient

如果还没有,请尝试在Package Manager Console中安装,然后再次检查。

enter image description here