Require Approval Before Project Verification Code (TFS)

We have a particularly important project in one of our solutions and we would like for any checks of this project to be approved by another team member. Is it possible?

+6
source share
2 answers

It is currently not possible to perform code validation, but you can switch to a branching model where merging between branches is only allowed by senior developers who do code reviews.

Despite the slight sharpness, you can even switch to using Git instead of TFVC. Git supports pull requests, where you block your main branch and then use pull requests as a lookup mechanism.

+3
source

There is currently no TFS support in TFS. What can you do:

  • Ask the developer to request a review of the TFS code before each check.
  • Apply comments to all changesets.
  • ask the senior developer to review comments about changes before specifying release / deployment, etc.

Or, if the project is critical, spend more time mating .

+1
source

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


All Articles