Namespace documentation on a .Net project (Sandcastle)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T18:10:49Zhttp://stackoverflow.com/feeds/question/156582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/156582/namespace-documentation-on-a-net-project-sandcastle7Namespace documentation on a .Net project (Sandcastle)?Ben2008-10-01T07:32:00Z2009-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>/// <summary>
/// My short namespace description
/// </summary>
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#1566822Answer by Davy Landman for Namespace documentation on a .Net project (Sandcastle)?Davy Landman2008-10-01T08:17:20Z2008-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#1567263Answer by Rinat Abdullin for Namespace documentation on a .Net project (Sandcastle)?Rinat Abdullin2008-10-01T08:40:14Z2008-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><namespaceSummaryItem name="System" isDocumented="True">
Generic interfaces and helper classes.
</namespaceSummaryItem>
</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#8570621Answer by tuinstoelen for Namespace documentation on a .Net project (Sandcastle)?tuinstoelen2009-05-13T09:49:25Z2009-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
{
/// <summary>
/// The <see cref="Some.Test"/> namespace contains classes for ....
/// </summary>
[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>