Namespace documentation on a .Net project (Sandcastle)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:10:49Z http://stackoverflow.com/feeds/question/156582 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/156582/namespace-documentation-on-a-net-project-sandcastle 7 Namespace documentation on a .Net project (Sandcastle)? Ben 2008-10-01T07:32:00Z 2009-05-13T09:49:25Z <p>Hello,</p> <p>I started using <a href="http://www.codeplex.com/SHFB" rel="nofollow">Sandcastle</a> some time ago to generate a Documentation Website for one of our projects. It's working quite well but we've always only written documentation for classes, methods, properties (...) in our project and had completely separate documentation for the overall project and project parts/modules/namespaces. It would be nice if I could merge that documentation together and add respective documentation to the generated helper files but I can't figure out how to do it.</p> <p>Just adding comments to the namespace declaration doesn't seem to work (C#):</p> <pre><code>/// &lt;summary&gt; /// My short namespace description /// &lt;/summary&gt; namespace MyNamespace { ... } </code></pre> <p>Does anyone know how to do this? I know it's possible somehow and it would be really nice to have... :)</p> http://stackoverflow.com/questions/156582/namespace-documentation-on-a-net-project-sandcastle/156682#156682 2 Answer by Davy Landman for Namespace documentation on a .Net project (Sandcastle)? Davy Landman 2008-10-01T08:17:20Z 2008-10-01T08:17:20Z <p>If you use <a href="http://www.codeplex.com/SHFB" rel="nofollow">Sandcastle Help File Builder</a> there is a dialog to enter the Namespace summaries. (Apparently also support for defining a specific class, but I wouldn't prefer it..)</p> <p>From the feature list:</p> <blockquote> <p>Definition of project summary and namespace summary comments that will appear in the help file. You can also easily indicate which namespaces to include or exclude from the help file. Support is also included for specifying namespace comments via a NamespaceDoc class within each namespace.</p> </blockquote> http://stackoverflow.com/questions/156582/namespace-documentation-on-a-net-project-sandcastle/156726#156726 3 Answer by Rinat Abdullin for Namespace documentation on a .Net project (Sandcastle)? Rinat Abdullin 2008-10-01T08:40:14Z 2008-10-01T08:55:54Z <p>Use <a href="http://www.codeplex.com/SHFB" rel="nofollow">Sandcastle Help File Builder</a>. It allows to specify namespace descriptions in the XML project file</p> <p><strong>Example:</strong></p> <pre><code>&lt;namespaceSummaryItem name="System" isDocumented="True"&gt; Generic interfaces and helper classes. &lt;/namespaceSummaryItem&gt; </code></pre> <p><strong>References:</strong> </p> <ul> <li><a href="http://lokad.svn.sourceforge.net/viewvc/lokad/Platform/Trunk/Shared/" rel="nofollow">example of Open Source project</a> that generates documentation with every build (all scripts are in the trunk).</li> <li>That's <a href="http://build.lokad.com/doc/shared/" rel="nofollow">how the documentation by SHFB looks like on the Web</a> (it is deployed on every forced build)</li> </ul> <p>.</p> http://stackoverflow.com/questions/156582/namespace-documentation-on-a-net-project-sandcastle/857062#857062 1 Answer by tuinstoelen for Namespace documentation on a .Net project (Sandcastle)? tuinstoelen 2009-05-13T09:49:25Z 2009-05-13T09:49:25Z <p>Sandcastle also supports the ndoc-style namespace documentation, which allows you to stick the documentation in the source files:</p> <p>Simply create a non-public class called NamespaceDoc in the namespace you want to document, and the xml doc comment for that class will be used for the namespace. </p> <p>Adorn it with a [CompilerGenerated] attribute to prevent the class itself from showing up in the documentation.</p> <p>Example:</p> <pre><code>namespace Some.Test { /// &lt;summary&gt; /// The &lt;see cref="Some.Test"/&gt; namespace contains classes for .... /// &lt;/summary&gt; [System.Runtime.CompilerServices.CompilerGenerated] class NamespaceDoc { } } </code></pre> <p>The work item in SandCastle is located <a href="http://www.codeplex.com/SHFB/WorkItem/View.aspx?WorkItemId=15516" rel="nofollow">here.</a></p>