Search code examples
visual-studiotfsvisual-studio-2017

How to see to whom did I send code for code review in TFS?


I have created a shelveset and send it for code review. Is there any way to verify if the code review request has actually reached the reviewer? When I go to TFS >> My Work >> My Code reviews, I can only see the last review request. How to see all the review requests I have sent?


Solution

  • Code Reviews get stored as work items.

    You could use work item query to track this. Create a custom "Query" with filter

    Work Item Type = Code Review Request
    

    And actually in Visual Studio--My work, you could see the user name you have sent to:

    enter image description here

    77 is the work item ID for code review, 114551749 is the name of reviewer.

    Open the code review work item you could also find the information you need,

    enter image description here

    There should be a child work item linked for a reviewer, assigned to should be whom you sent code.