如何让沙堡,包括继承属性(How to get Sandcastle to include inhe

2019-10-20 08:38发布

我有2 POCO类为我的视图模型:

public class BaseView
{
    public int Id { get; set; }

    public string Name { get; set; }
}

public class FullView : BaseView
{
    public string Reference { get; set; }

    public bool IsActive { get; set; }
}

当我用沙堡(2014.5.31.0)生成CHM帮助文件都被包括在内,但在FullView只显示它的2个属性。

我怎样才能得到它包含为继承的基本视角特性?

Answer 1:

右键单击沙堡项目>属性>可见性>继承基类成员



文章来源: How to get Sandcastle to include inherited properties