2

我正在尝试连接 tfs ,我执行了以下步骤:

  1. 安装 vsc
  2. 安装 Azure 存储库
  3. 安装签出 tfs 文件

这是我的 setting.json 代码

   {
    "tfvc.restrictWorkspace": true,
    "tfvc.location": "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\IDE\\tf.exe",
    "editor.renderControlCharacters": true,
    "git.enableSmartCommit": true,
    "git.enabled": false,
    "checkouttfs.tflocation": "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\IDE\\tf.exe",
    "team.showWelcomeMessage": false,
    "workbench.colorTheme": "Visual Studio Light"
}

但是当我单击团队-> 登录时,我收到此错误:

(team) 配置的TF版本不满足最低版本。在升级之前,您可能会遇到某些命令的错误或限制。最低版本:14.102.0

现在我该怎么办?我的 tf 版本是 1.0.1 我的 vsc 版本是 1.30

4

2 回答 2

0

我发现将 vs 代码连接到 tfs 的问题,您应该安装 Visual Studio 2017 或更高版本。我的视觉工作室是 2015 年,tf.exe 的版本已关闭。

于 2019-01-05T06:47:06.573 回答
0

您的下一步将是:

  1. 在https://code.visualstudio.com/Download下载 Visual Studio 2017 或 2019 。
  2. 程序完成安装几个小时后,这会将您的 TF.exe 更新到至少 15.129 的版本。#####
  3. 然后将您的 setting.json 更新为“tfvc.location”:“C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\TF.exe”,

    或者

    "tfvc.location": "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\TF.exe", "tfvc.restrictWorkspace": true,

最后,您将不再看到以下错误消息:“(团队)配置的 TF 版本不符合最低版本。在升级之前,您可能会遇到某些命令的错误或限制。最低版本:14.102.0”

于 2019-10-25T12:09:27.450 回答