2

我想将对文件的引用添加到类的 xml 注释中。我可以这样做:

/// <summary>
/// Condition with the content of the text <a href="file:///d:/a.jpg">file</a>
/// </summary>

如何使用文件的相对路径?

4

1 回答 1

1

在 Sandcastle 中,路径相对于工作文件夹(.\Working设置中设置的输出路径下的文件夹)。要指定相对于您的项目的路径,请在其前面加上{@ProjectFolder}. 例如:

<a href="{@ProjectFolder}/a.jpg">File</a>

您可以在此处找到此类替换标签的完整列表:

自定义构建过程 - 替换标签


您是否知道可以在文档标签中替换cref为:href

<see href="http://www.example.com/">Example</see>

<seealso href="http://www.example.com/">Example</seealso>
于 2013-03-22T14:42:26.100 回答