我的项目中有一些事件处理程序委托,我想将它们包含到我使用docfx 自动生成的文档中。
我知道在docfx.json > 元数据中有一个过滤器选项,但是我该如何配置呢?有任何想法吗?
我尝试添加一个filterConfig.yml,并修改docfx.json,没有任何错误,但这不起作用。
C#代码:
/// <summary>
/// Double click on one row of the search result, this should open the detail form of it
/// </summary>
/// <param name="sender">Default_GridView</param>
/// <param name="e">EventArgs</param>
private void Default_GridView_DoubleClick(object sender, EventArgs e)
{
//open the detail form here
}
docfx.json:
{
"metadata": [
{
"src": [
{
"files": [
"*.csproj"
],
"cwd": ".",
"exclude": [
"**/obj/**",
"**/bin/**",
"_site/**"
]
}
],
"dest": "obj/api",
"filter": "filterConfig.yml"
}
],
filterConfig.yml:
apiRules:
- include:
uidRegex: ^System\.EventHandler
type: Type