Reputation: 169
We have a particularly critical project in one of our solutions and would like any check-ins to that project to be approved by another member of the team. Is this possible?
Upvotes: 6
Views: 2010
Reputation: 39898
Forcing a code review is not possible at the moment but you could switch to a branching model where merges between the branches are only allowed by the senior developers who perform code reviews.
Although a little drastic, you could even switch to using Git instead of TFVC. Git has support for pull requests where you lock down your master branch and then use the pull requests as a review mechanism.
Upvotes: 3
Reputation: 6239
There is currently no support for this within TFS. What you could do is:
Or if the project is critical devote more time towards pairing.
Upvotes: 1