vote up 4 vote down star
1

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 advise? I've heard of SandCastle but not sure if that's the best out.

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

Thanks.

flag

79% accept rate

7 Answers

vote up 12 vote down check

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 that can help you construct/configure the documentation using sand castle.

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

link|flag
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 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 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 at 19:23
vote up 4 vote down

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|flag
Awesome, thanks. – Chance Dec 31 at 18:08
vote up 2 vote down

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

link|flag
GhostDoc looks interesting – Chance Dec 31 at 18:12
vote up 1 vote down

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

link|flag
Hmm, that looks interesting and definitely noting it for potential use in the future - thanks. – Chance Dec 31 at 18:10
vote up 2 vote down

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

I've been using doxygen in a C# project a few years ago and it 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|flag
vote up 1 vote down

There is now also Docu.

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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