Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Automate build comment web pages

Status
Not open for further replies.

SBGibson

Programmer
Apr 18, 2001
125
IT
Hi guys,
there's a way, via command line or something else, to automatically launch the creation of web bages based on the c# xml comments in order to update the documentation during a nightly build?
Thanks in advance.

Stevie B. Gibson
 
NAnt with NDoc has the ability to do this. You would use NAnt to do your nightly builds, and in your Nant script you would call NDoc, which reads your xml comments and produces either a HTML Help file (*.chm), HTML Help 2 (like used by Visual Studio), or MSDN-Online style HTML info.

Learn more at

A good book (despite it being for Java) is:
Pragmatic Project Automation: How to Build, Deploy, and Monitor Java Apps
ISBN: 0974514039

While the Java crowd uses Ant to automate their tasks, the scripts used by NAnt are very similar (no surprise, considering that NAnt is a derivative of Ant), so you'll be able to get some good ideas from it.

Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top