Reference TFS work item from code comment
问题 In Visual Studio (2012+) I want a clickable reference from a code comment to a TFS work item. Is there a simple way to do this, and is this also possible from comments within the body of a function (not being the summary of the function)? So I want something like this: /// <summary> /// Example of a summary /// </summary> static void Main() { int dummy = 1; //Should be 1 according to @Task1234 <- should be a hyperlink } And rather not something like this: /// <summary> /// Example of a