docfx:排除[属性],但不分配给它的类别/属性/变量

时间:2018-11-14 21:04:38

标签: docfx

我正在用docfx记录c#项目。该项目使用SQLite数据库,为此我应用了SQLite-Net-PCL。因此,在数据对象的类定义中,我使用属性来自定义SQLite-Structure,例如

[PrimaryKey, Indexed(Name = "challenges_index_name", Order = 1, Unique = true), NotNull]
public string name { get; set; }

生成文档时,生成的输出在声明部分中显示这些属性,如下所示:

name
Declaration
[PrimaryKey]
[Indexed(Name = "challenges_index_name", Order = 1, Unique = true)]
[NotNull]
public string name { get; set; }

Property Value 

如何设置docfx以便不在此处生成[...]属性?

0 个答案:

没有答案