vote up 1 vote down star
1

What steps do I need to take to get HTML documentation automatically building via the build step in Visual Studio? I have all the comments in place and the comments.xml file being generated, and Sandcastle installed. I just need to know what to add to the post-build step in order to generate the docs.

flag

65% accept rate
Don't know about your target build times off course, but just wanted to mention that sandcastle really isn't something you want to include in your regular build-debug cycle. – boris callens Oct 21 '08 at 6:59
No, as I mentioned in this answer (stackoverflow.com/questions/211693/…) I have a separate build for documentation. – Mark Ingram Oct 21 '08 at 8:08

3 Answers

vote up 0 vote down

Install these:

NDoc: http://prdownloads.sourceforge.net/ndoc/NDoc-v1.3.1.msi?download

HTML Help Workshop: http://www.microsoft.com/downloads/details.aspx?FamilyID=00535334-c8a6-452f-9aa0-d597d16580cc&displaylang=en

Then use the NDocConsole.exe command line to generate documentation in either MSDN or CHM form:

@c:\progra~1\NDoc\NDocConsole.exe MyCode.dll,MyCode.xml -Documenter=MSDN-CHM

I myself have made an External Tool for this and gave it a shortcut, but as the previous poster said you can hook it up to a postbuild event and there you go.

(PS I have been using the setup above for a few years now and am very happy with it)

link|flag
NDoc doesn't fully support .NET 2.0 and I'll be using the tool with .NET 3.5 / Silverlight (hence why the original question said "sandcastle"). – Mark Ingram Oct 17 '08 at 12:21
vote up 0 vote down

I must admit that I find the current version of Sandcastle a bit lacking; for large projects it is quite slow, and it isn't easy to integrate (since it is still early).

For regular use, I actually find it easier just to point reflector at a folder with the dll and xml files - IIRC, it will load the xml file(s) as you navigate around.

Plus I almost always have reflector open anyway...

[edit] checked, and yes - xml comments show in the disassembler panel

link|flag
I want to generate the html documentation so I can put it on our internal dev site. – Mark Ingram Oct 17 '08 at 11:04
As you like. The main use I can see of Sandcastle is with ISVs; for internal use, I'm happy just to have the comments in a navigable way that doesn't involve VS... reflector gives me that ;-p – Marc Gravell Oct 17 '08 at 11:06
Well it's looking like quite a pain to setup so chances are it's going to get left behind ;) – Mark Ingram Oct 17 '08 at 12:19
vote up 3 vote down

I recommend you install Sandcastle Help File Builder from Codeplex.

You can run this from the command line, e.g. from a Post-Build event. The simplest command line is:

<install-path>\SandcastleBuilderConsole.exe ProjectName.shfb

Sandcastle is very slow, so I only run it for Release Builds. To do this, create a Post-Build event with a command something like the following, which passes the configuration name to a batch file:

CALL "$(ProjectDir)PostBuild.cmd" $(ConfigurationName)

Then inside the batch file you can test if the first argument is "Release" and if so run SandcastleBuilderConsole.exe.

link|flag
I do this already in the post-build script, i just check the configuration name to make sure it's "Documentation" (i have 3 configs, debug, release & documentation). – Mark Ingram Oct 17 '08 at 11:03
Even better. Means you can create release builds fast without the doc. – Joe Oct 17 '08 at 11:06

Your Answer

Get an OpenID
or

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