嗨,我在尝试运行名为“C# Example.WorkItemBrowser”的示例项目时收到 System.InvalidProgramException。当我尝试执行这些行时,也会出现异常:
TeamFoundationServer tfserver = new TeamFoundationServer("http://localhost:8085");
tfserver.EnsureAuthenticated();
WorkItemStore store = new WorkItemStore(tfserver);
Console.WriteLine(store.Projects.Count);
为此,我正在使用 2008 Visual Studio SDK。
用于程序集 Microsoft.TeamFoundation.WorkItemTracking.Client.dll 的 PEVerify
得到这个输出:
[MD]: Error: Value class has neither fields nor size parameter. [token:0x020000B3]
[MD]: Error: Value class has neither fields nor size parameter. [token:0x020000BF]
[MD]: Error: Value class has neither fields nor size parameter. [token:0x020000C4]
3 Error(s) Verifying Microsoft.TeamFoundation.WorkItemTracking.Client.dll
SDK 的全新下载和安装以及卸载和安装以及再次安装 .net 3.5 sp1 并没有帮助。
我的问题描述有问题还是其他地方没有发生?