How to get Sandcastle to include inherited properties

核能气质少年 提交于 2019-12-24 17:14:38

问题


I have 2 POCO classes for my view model:

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

    public string Name { get; set; }
}

and

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

    public bool IsActive { get; set; }
}

When I generate a CHM help file using Sandcastle (2014.5.31.0) both are included but the FullView only shows it's 2 properties.

How can I get it to include the BaseView properties that it is inheriting?


回答1:


Right click the Sandcastle project > Properties > Visibility > Inherited Base Class Members



来源:https://stackoverflow.com/questions/24388192/how-to-get-sandcastle-to-include-inherited-properties

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!