I have a C# code base with XML comments and (owing to this site) discovered that Doxygen can easily generate turn code and comments into HTML and PDF documentation So I know how to document classes and other types and their contents.
But how to document projects/assemblies/namespaces? My code base has over 50 of them; their responsibilities must be documented.
I'd prefer to just use XML comments on them as well. but Microsoft's XML commenting manual doesn't give me a clue how to do this, and I can't find any clues in the Doxygen documentation either.
What am I missing? How do you do provide documentation for your C# projects/assemblies?
Update: I now know how to do it with SHFB.