Reputation: 509
How can I go about adding a hyperlink (not a link to another workitem) to a workitem in TFS (using the API)?
Upvotes: 2
Views: 3407
Reputation: 65544
Hyperlink hl = new Hyperlink("http://microsoft.com");
hl.Comment = "Microsoft";
workItem.Links.Add(hl);
Upvotes: 6