vote up 3 vote down star
1

Does anyone know any tool like NDoc that could generate MSDN-like documentation out of XML comments in the C# code? I need it for .NET 3.5 and C#.

Sandcastle maybe?

Thanks.

flag

57% accept rate
I think this question was covered in detail in stackoverflow.com/questions/546053 – Bogdan_Ch Oct 27 at 18:04
Yes, but my question was asked 6 months before that one! – muerte Oct 27 at 21:55

8 Answers

vote up 4 vote down check

Yep, SandCastle.

NDoc was abandoned, unfortunately.

link|flag
vote up 0 vote down

I am currently using NDoc, but it is no longer maintained. I hear Sandcastle is the way forward, but it may not be very stable/full featured yet.

link|flag
vote up 0 vote down

SandCastle comes from what they use internally at Microsoft, I believe. I have used it in the past to generate documentation for our code which looked very similar to MSDN.

link|flag
vote up 1 vote down

I just installed and tried Sandcastle.

I also found Sandcastle Help File Builder as a GUI interface.

But, I have a problem... I have a assembly which referenced Microsoft Enterprise Library. When I generate documentation for my assembly, it also generated the documentation for the referenced EntLib...

I'm still playing with it, but do you know how to turn this off, and generate documentation just for my assembly?

link|flag
vote up 1 vote down

I've done this recently, but I can't remember the exact steps.

I think I added the external assemblies as dependencies, rather than as actual project assemblies. Let me know if this works. If not I'll do some more digging.

ZS

link|flag
vote up 1 vote down

@mmilic

I'm still playing with it, but do you know how to turn this off, and generate documentation just for my assembly?

Yes you can. Add EntLib through the Dependencies property. You can see it on the Build category.

link|flag
vote up 0 vote down

Thanks guys, that was it.

All I needed to do was add my referenced assemblies to the Dependencies property and that was it.

By the way, do you know how could I generate MSDN style documentation? The best example is the one used in Visual Studio. It is browsed with the Document Explorer.

I'm currently generating HtmlHelp 1.0 (.chm) files, which is also fine...

link|flag
vote up 1 vote down

Doxygen now supports the XML formatted commands, including You can also use the other Doxygen commands to add information that the default XML comments don't support in the standard.

link|flag

Your Answer

Get an OpenID
or

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