Automatically generate SandCastle documentation using CruiseControl.NET or VSTS Team Build
Edit on GitHubEarlier this week, I was playing around with SandCastle, and found that the SandCastle Help File Builder (SHFB) was a great tool to quickly create SandCastle documentation. No more XML writing, just a few clicks and documentation is compiled into a HTML Help file or as a MSDN-style website.
Next to the GUI being quite handy, there's also a command-line tool in the download of SHFB... Now wouldn't it be nice if you could just create a configuration file using SHFB, and automatically compile documentation on your build server every weekend? Here's a short how-to, for both CruiseControl.NET (ccnet) and VSTS Team Build!
Shared steps
Get the right tools
First of all, download and install the right tools on your build machine:
This should not be difficult, right?
Fix a small bug...
In the 1.5.0.1 release of SHFB, there is a small bug... Navigate to the file C:\Program Files\EWSoftware\Sandcastle Help File Builder\Templates\MRefBuilder.config, open it with Notepad, and replace %DXROOT% with {@SandcastlePath} on line 4.
Setup your project file the right way
Next, make sure that your application build outputs XML code comment files. To do this, open your project file's property dialog, and enable "XML documentation file".
Create a SHFB configuration file
Now, create a SHFB configuration file for your solution. Make sure you include the necessary libraries and XML comment files. Also, try building the configuration file you just created. It often occurs you need to add a link to another assembly in your configuration too. If that assembly does not have any XML comments, you can use this one: Unknown.XML (right-click, Save As...).
Use the "Namespaces" button on the top-right of the SHFB screen to include/exclude specific namespaces (useful for external assemblies!), and to provide a short description of those namespaces for use in the help file.
In my case, I added this file (and Unknown.XML) to a SourceSafe repository, which will be used by ccnet to always fetch the latest documentation configuration file.
One thing to keep in mind: references to assemblies that should be documented, must be located from the build server's perspective! This means that when your build folder is C:\builds\, your assembly paths must resolve to that location somehow (relative or absolute).
CruiseControl.NET
If you are using ccnet as your build server, the following steps are required to add a documentation build to your build server!
Locate your ccnet.config file, and add a new project:
[code:xml]
<cruisecontrol>
<project name="SandCastle_Documentation">
<workingDirectory>C:\SandCastle_Documentation\</workingDirectory>
<artifactDirectory>C:\SandCastle_Documentation\Generated\</artifactDirectory>
<modificationDelaySeconds>0</modificationDelaySeconds>
<sourcecontrol>
<!-- ... Fetch Documentation.shfb here! ... -->
</sourcecontrol>
<triggers>
<scheduleTrigger time="21:00" buildCondition="ForceBuild">
<weekDays>
<weekDay>Sunday</weekDay>
</weekDays>
</scheduleTrigger>
</triggers>
<tasks>
<exec>
<executable>C:\Program Files\EWSoftware\Sandcastle Help File Builder\SandcastleBuilderConsole.exe</executable>
<baseDirectory>C:\SandCastle_Documentation\</baseDirectory>
<buildArgs>"C:\SandCastle_Documentation\Documentation.shfb"</buildArgs>
<buildTimeoutSeconds>10800</buildTimeoutSeconds> <!-- 3 hours -->
</exec>
<exec>
<executable>xcopy</executable>
<buildArgs>"C:\SandCastle_Documentation\Generated" "C:\Inetpub\wwwroot\SandCastle_Documentation" /E /Q /H /R /Y</buildArgs>
<buildTimeoutSeconds>3600</buildTimeoutSeconds> <!-- 1 hour -->
</exec>
</tasks>
<publishers>
<xmllogger logDir="c:\Program Files\CruiseControl.NET\Log" />
</publishers>
</project>
</cruisecontrol>
[/code]
There are two notheworthy steps here, located inside the <tasks> element. The first task you see there is used to call the SHFB command line tool and instruct it to generate documentation. Now since I want to create a MSDN-style documentation website, I added a second step, copying the deliverables to a folder in my wwwroot. For both steps, make sure you extend the default <buildTimeoutSeconds>! Over here, the thing takes a hour and a half to complete both steps, you see I have configured a larger amount of time there...
Finished? Restart the CruiseControl.NET system service, and you are ready to build SandCastle documentation automatically!
VSTS Team Build
If you are using VSTS Team Build as your build server, the following steps are required to add a documentation build to your build server!
Locate your TFSbuild.proj file, check it out, and add a build target at the end of the file:
[code:xml]
<Target Name="AfterCompile">
<Exec Command=""C:\Program Files\EWSoftware\Sandcastle Help File Builder\SandcastleBuilderConsole.exe" "C:\SandCastle_Documentation\Documentation.shfb"" />
<Exec Command="xcopy "C:\SandCastle_Documentation\Generated" "C:\Inetpub\wwwroot\SandCastle_Documentation" /E /Q /H /R /Y" />
</Target>
[/code]
There is one notheworthy step here: the first target task you see is used to call the SHFB command line tool and instruct it to generate documentation. Now since I want to create a MSDN-style documentation website, I added a second task, copying the deliverables to a folder in my wwwroot.
Check-in the build file, and build the solution! SandCastle documentation will now be integrated in your build process.
This is an imported post. It was imported from my old blog using an automated tool and may contain formatting errors and/or broken images.
3 responses