Search code examples
c#sandcastleshfb

Document Internal Class with Sandcastle


In my C# project, SHFB is not including a description for internal classes, despite having <summary></summary> elements before them. The classes even show up in the classes list, yet the description is blank.

enter image description here

enter image description here

I have enabled the visibility for internal members, but cannot figure out how to enable internal classes. Any ideas?

Developing in VS2013 Ultimate, using the latest SHFB build (2014.11.22.0) from NuGet.

( I know some will question why I would want to include documentation for internal members, but it has proven useful for our development team to have a quick reference for the code base. )


Solution

  • With the help of @softwariness, I resolved the issue.

    1. Open the "Project Properties"
    2. Select the "Build" tag.
    3. Under "Output", enable the "XML documentation file:"

    enter image description here