How to include custom doc-comment elements in Sand

2019-07-30 22:47发布

问题:

In C# if I have a method that I add XML documenting, the following will be generated by default:

/// <summary>
/// Does something
/// </summary>
public string SomeValue { get; set; }

I want to add my own doc-comment as follows below which is just fine in VS.NET build:

/// <summary>
/// 
/// </summary>
/// <usage>Required</usage>
public string SomeValue { get; set; }

The problem is I do not see the new <usage> comment values displayed on my output .chm file. I'm pretty new to using Sandcastle so it might be something easy I'm missing, but I didn't see what I was looking for in the documentation.

Does anyone know how to incorporate the <usage> value in my output help file?

回答1:

Supporting Custom tags in Sandcastle is an old article, but might still be relevant or at least point you in the right direction.



标签: c# sandcastle