gpt4 book ai didi

c# .cs 文件,在 Visual Studio 的评论中带有 http 相对链接

转载 作者:行者123 更新时间:2023-11-30 12:13:40 25 4
gpt4 key购买 nike

假设我在 Visual Studio 中有以下 C# 项目结构

  • 规范
    • UserStory1.html
    • UserStory2.html
  • 测试
    • Test1.cs
    • Test2.cs

现在我想通过以下方式将我的单元测试与用 html 编写的规范连接起来

//http://../path.to.UserStory1.html#or_even_some_anchor
[TestFixture]
public class Test1
{
[Test]
public void SomeTest()
{

}
}

这样,当我在评论中的链接上按 CTRL+Clik 时,我可以跳转到规范并查看应该真正测试的内容。问题是我不知道如何为项目中包含的 html 文件创建相对路径。

  • 我该怎么做?
  • 如果不是在标准 VS 中,是否有一些可用的插件可以启用此功能?

最佳答案

我认为在你的情况下 <see/> 文档标签最有意义,但是 others are available .

这会将您的示例代码更改为以下内容:

/// <summary>
/// This test does something
/// </summary>
/// <see cref="http://../path.to.UserStory1.html#or_even_some_anchor"/>
[TestFixture]
public class Test1
{
[Test]
public void SomeTest() { }
}

我用 http://www.google.com 测试过并在 VS 的新选项卡中打开它。所有这些都内置在 VS 中,无需任何附加组件。

关于c# .cs 文件,在 Visual Studio 的评论中带有 http 相对链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11180143/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com