c# - Reference TFS work item from code comment -


in visual studio (2012+) want clickable reference code comment tfs work item. there simple way this, , possible comments within body of function (not being summary of function)?

so want this:

/// <summary> /// example of summary /// </summary> static void main() {     int dummy = 1; //should 1 according @task1234 <- should hyperlink } 

and rather not this:

/// <summary> /// example of summary, see <a href="http://mytfsserver:8080//tfs/mycollection/branch/_workitems#id=1234"> task 1234 </a>. /// </summary> static void main() { } 

some tag reading material: recommended tags documentation comments (c# programming guide)

no, isn't possible - not without writing addin pre-parses page looking links.

i know there addin fogbugz (and other bug/workitem tracking systems), i've not seen 1 tfs (although doesn't mean 1 doesn't exist).


Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -