Rod
Rod

Reputation: 4471

Do I need to install all VS workloads in the TFS build server?

Currently we only have Visual Studio 2015 installed on our TFS build server. I'd like to put VS 2017 and VS 2019 onto the build server.

Does that mean I need to install all possible workloads for both of them, in the build server?

Upvotes: 1

Views: 314

Answers (1)

Shayki Abramczyk
Shayki Abramczyk

Reputation: 41775

The best practice is to simulate the build server to the developer machine, so it's good to install all the workloads that installed on the VS in the developer machine.

If you don't want, you can install only Visual Studio Build Tools, it allows you to build VS projects. but sometimes if the developer wrote some specific code in specific workload that build tools not support it, the TFS build will fail.

Upvotes: 3

Related Questions