user952342
user952342

Reputation: 2742

how to hyperlink to a TFS item from visual studio

Is there a way in visual studio to automatically hyperlink directly to a bug/TestCase/WorkItem?

For example, I might have a code comment like this:

//Fix for TFS bug number 12345

I want visual studio to recognize that 12345 is a bug number and automatically give me a hyperlink to that bug number.

Is that possible?

Upvotes: 0

Views: 165

Answers (1)

KMoraz
KMoraz

Reputation: 14164

The closest you can do is:

  • Put the full work item URL (e.g.: http://tfs:8080/tfs/DefaultCollection/_workitems/edit/12345)

  • Use WorkItemAttribute in test classes

  • Convince your boss to buy you a VS 2013 Ultimate with CodeLens...

Upvotes: 1

Related Questions