How to add Visual Studio 2017 to Team Build Server Build Agent?

I installed Visual Studio 2017 on my server to create projects. The Foundation Foundation 2015 Update 3 server is running on the server. TFS 2015 shows the option as the last in the version of Visual Studio, but when I create the project, it does not build and says that the agent does not have visualstudio, vstest, msbuild capabilities. I try to manually add features, but it does not work and says that Visual Studio was not found.

+5
source share
1 answer

If your build agent is not installed on the same computer with your TFS server (which VS2017 is installed). Try installing Visual Studio on your build agent , then reregister the build agent using TFS.

If your build agent and TFS VS2017 server are on the same machine, but VS is installed after you configure the build agent. Then re-register the build agent using TFS, since system capabilities are detected only during the first setup of the agent - any changes made after this are not fixed.

More ways, please refer to this similar question: No agent was found with the following features: msbuild, visualstudio, vstest?

+2
source

Source: https://habr.com/ru/post/1267132/


All Articles