c# – 从代码注释引用TFS工作项

前端之家收集整理的这篇文章主要介绍了c# – 从代码注释引用TFS工作项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Visual Studio(2012)中,我想要一个代码注释到TFS工作项的可点击引用.
有没有一个简单的方法来做到这一点,这也可以从功能的主体内的评论(不是函数的总结)来实现?

所以我想要这样的东西:

/// <summary>
/// Example of a summary
/// </summary>
static void Main()
{
    int dummy = 1; //Should be 1 according to @Task1234 <- should be a hyperlink
}

而不是这样的事情:

/// <summary>
/// Example of a summary,see <a href="http://mytfsserver:8080//tfs/myCollection/Branch/_workItems#id=1234"> Task 1234 </a>.
/// </summary>
static void Main()
{
}

一些标签阅读材料:
Recommended Tags for Documentation Comments (C# Programming Guide)

解决方法

不,这是不可能的 – 不是没有编写一个预先解析页面寻找可能的链接插件.

我知道有一个类似于FogBugz(和其他bug / workitem跟踪系统)的插件,但是我没有看到一个专门针对TFS(尽管这并不意味着一个不存在).

原文链接:https://www.f2er.com/csharp/93599.html

猜你在找的C#相关文章