up vote 17 down vote favorite
9
share [g+] share [fb]

Could any one suggest a tool for performing peer code review before check-ins that is integrated with Team Foundation Server and Visual Studio 2008?

[Update]: Looks like there is no such tool. Can you suggest the best process for code-review after check in?

link|improve this question

feedback

6 Answers

up vote 11 down vote accepted

The key feature that help us do code reviews on our team would be shelvesets. Granted, they are a less visible feature to work with in Visual Studio Team Editions out of the box. You can take it a step further and define a workflow as part of your Team Project template that enforces the code review process through policies and custom work items. A good example to start from can be found in CodePlex: TFS Code Review Workflow

Personally, I have not used the workflow; our team feels that we are sufficiently able to perform code reviews with the base shelveset feature. It only takes a little understanding on how to use it. Here is a summary of our process:

  1. Developer creates a shelveset of the changes they want to commit.

  2. Developer sends an email to the Reviewer specifying the name of the shelveset to review and any associated work items to reference in the changes.

  3. Reviewer gets the shelveset and performs a review, optionally making any suggested modifications if necessary in a new shelveset.

  4. Reviewer sends an email to notify the Developer once the review has been completed.

  5. If the review did not result in any suggested modifications for the Developer to make, the shelveset can be committed by the Developer. Otherwise, modifications are made and the process repeats.

link|improve this answer
We use the same approach in out project. But you are waisting so mush time to switch between a IDE and mail client to copy&paste code that you want to comment. – klashar Aug 6 '09 at 13:07
If you feel that it is too time consuming to switch out of the IDE you might want to look into the Code Review Workflow on CodePlex. It makes use of event subscriptions to email the code review team when a new work item is created for them to review. – Saul Dolgin Aug 6 '09 at 13:29
Instead of copy/paste, why not have the reviewer shelve his changes? – Richard Berg Aug 6 '09 at 14:48
2  
Oh my god, this is nasty! – Pop Catalin Aug 8 '11 at 14:30
feedback

There is another solution on Codeplex named Team Review thats is a pretty comprehensive peer reviewing system. It also makes use of shelved check ins, and event subscriptions to inform reviewers.

link|improve this answer
This is a good solution for code review <b>after</b> check in. All work with shelves steal shall be processed by hand in case of code review after check in. – klashar Aug 6 '09 at 16:01
feedback

Code Collaborator

link|improve this answer
I've used this at two previous companies with TFS. It allows reviews both pre- and post-checkin. The UI is pretty bad and the learning curve seems to take about 2 weeks for most developers but once you get past those two issues it's really powerful and well worth using. The one major issue is you have to do some scripting to integrate it with work item tracking. – Bryan Anderson Jun 17 '11 at 15:48
feedback

I've had good experience with CodeCollaborator while using Mercurial DSCS, even though there wasn't much integration. CC provides a way to have online exchanges on a marked line of code, to mark code as a defect and it keeps track of when all comments and defects have been looked at and resolved. It also shows code changes in diff window and allows uploading of new change sets shows differences between any two change sets in the review.

Now I'm looking to use TFS. I've just received email from CodeCollaborator vendor SmartBear that it is possible to integrate with an external SCS. See External Tracking. If I do this I'll update here. I have no connection with SmartBear other than having used their CodeCollaborator product.

link|improve this answer
feedback

You might want to try out a new Code Review Tool which integrates with multiple different version control systems including TFS 2008 and above. Currently it doesn't support a visual studio plugin.

You can download a full featured time limited trial version to install on Windows Server or you can try out the hosted version.

Note: I am associated with the company that builds the above product.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.