up vote 8 down vote favorite
6
share [g+] share [fb]

I've never used a documentation system before, typically using commenting by hand but I think it would be nice to do so for a new project. What do you guys/gals advise? I've heard of Sandcastle but not sure if that's the best out.

(This is for an open-source project so it needs to be free unfortunately.)

link|improve this question

feedback

closed as not constructive by Tim Post Sep 12 '11 at 11:52

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

8 Answers

up vote 14 down vote accepted

Sandcastle will create documentation in either HTML, HTML Help 1.x (.CHM) file or HTML Help 2.x (.HxS) file format from your XML comments in your code in the style of MSDN that is fully searchable with table of contents, etc..

In theory there is very little work extra work you would need to do in order to get very fully documentation. It can also be styled using stylesheets to look completely different.

There is an application (free) on CodePlex called Sandcastle Help File Builder (SHFB) that can help you construct/configure the documentation using Sandcastle.

I personally have used this and in my opinion it was easy to setup using SHFB to configure it. You can also schedule it to re-build as part of an automated build process if you want to use the command-line.

link|improve this answer
Thank you, I'll shift through them to see if they are worth it. Do you have any in particular that you like? – Chance Dec 31 '08 at 18:09
Ah - I must have misread his post (don't see an edit so I guess I did). I didn't even see the link, doh! – Chance Dec 31 '08 at 18:14
I wouldn't call the SHFB easy to set up. I posted a big article (with screenshots) on how to do it on my blog. Not a small article, btw. – Will Dec 31 '08 at 19:23
feedback

Sandcastle is great. It's replaces NDoc nicely and is fairly easy to setup.

I've written up a previous entry with some links you may find beneficial to look at: http://stackoverflow.com/questions/319632/docproject-vs-sandcastle-help-file-builder-gui#398060

link|improve this answer
Awesome, thanks. – Chance Dec 31 '08 at 18:08
feedback

First off, I don't see how there could be anything unfortunate about working on an opensource project ;) But an attempt at answering your question would be doxygen.

I've been using doxygen in a C# project a few years ago and its functionality and output options are simply unbeatable. It's fairly easy to set up, and it has built in support for C#. Besides the usual HTML, doxygen can produce LaTeX, RTF, PostScript, hyperlinked PDF, compressed HTML, and Unix man pages. It can read and produce lists of all flavours of TODO, \todo, ToDO, FIXME, BROKEN or any other 'annotation' you or coders before you have made in the code. It can inline images and link internally in the code base on namespaces, packages or whatever your language calls modules nowadays.

Dimitri (the author of doxygen) is very responsive and helpful and the community around doxygen is very active as well.

To get started, simply open a prompt and type:

Doxygen -g

and voila: you have yourself a fully documented configuration file!

There's also a short tutorial for Windows users here.

link|improve this answer
With the Windows binary you don't even need to the command line anymore - a GUI is now part of it. – Chris S Apr 5 '11 at 20:31
feedback

NDoc was the first to come out which SandCastle 'improved on'. For smaller documentation I really like GhostDoc.

link|improve this answer
GhostDoc looks interesting – Chance Dec 31 '08 at 18:12
feedback

The original NDoc project (mentioned by others) is dead, but there is a new project called NDoc3.

NDoc3 supports .NET 2.0 - 3.5. It is currently available as a beta version and worked great for me. I'm not sure if the project is still active - the last beta was release in april 2009.

link|improve this answer
feedback

Not free, but for the record: vsdocman from http://www.helixoft.com

link|improve this answer
Hmm, that looks interesting and definitely noting it for potential use in the future - thanks. – Chance Dec 31 '08 at 18:10
feedback

There is now also Docu.

link|improve this answer
feedback

I found Starcastle rather difficult to set up, undocumented and even somewhat buggy. Also, I didn't fancy that the vs2005 style generates a separate page for a type and its members. Starcastle is very good for large, public documentation like MSDN, but for simple internal documentation, I recommend mdoc from the Mono project.

To generate documentation from a XML comment file and a .NET assembly, run:

mdoc update -i comments.xml assembly.dll -o mono-xml-files
mdoc export-html mdoc-xml-files -o mdoc-html-output

The above converts the comments into mdoc's own XML format and again converts it to HTML.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.