我喜欢通过 C# 代码检查文件,但我总是收到 TF14098 Acess Denied Exception。TFS 管理员向我保证,我有签出/编辑权限,并且在 VisualStudio 和 tf.exe 中签出文件没有任何问题。
这是我当前的 C# 代码:
const string tfsServer = @"http://MyServer:8080/tfs";
const string fileName = @"$/MyFile.xaml";
const string workspaceName = "MyWorkspace";
using (TfsTeamProjectCollection tfs = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri(tfsServer)))
{
if (tfs != null)
{
WorkspaceInfo workspaceInfo = Workstation.Current.GetLocalWorkspaceInfo(fileName);
if (null != workspaceInfo)
{
var vcs = tfs.GetService<VersionControlServer>();
Workspace workspace = workspaceInfo.GetWorkspace(tfs);
if(workspace == null){
workspace = vcs.GetWorkspace(workspaceName, vcs.AuthorizedUser);
}
vcs.NonFatalError += VersionControlOnNonFatalError;
vcs.Getting += OnGetting;
vcs.BeforeCheckinPendingChange += OnBeforeCheckinPendingChange;
vcs.NewPendingChange += OnNewPendingChange;
if (workspace != null)
{
workspace.PendEdit(fileName);
}
}
}
}
结果总是:
非致命故障:TF14098:访问被拒绝:用户 Me 需要 $/MyFile.xaml 的 PendChange 权限。
在对此错误进行了大量研究后,我尝试通过 Dos-Box 检查权限,并执行了以下命令行:
tf checkout $/MyFile.xaml
它可以毫无问题地签出文件!(如果我在文件抵抗的目录中)
有没有人知道问题可能是什么?我的代码(我用 VisualStudio2012 编写和执行的应用程序)和命令行 tf checkout 有什么区别?
感谢您的提示和提示!帕特里克