Henrik
Henrik

Reputation: 1807

Generate xml file and/or html html files of xml comments

I've commented my code (with three "///" at class-level and some methods), but as it as an exam, my teacher wants the documentation in my report.

Im wondering two things:

  1. How to generate xml file of my comments ?

  2. Do anyone know if there exist a good program to generate html files of the xml documentation ? to get it as "javadoc" style...

Upvotes: 2

Views: 249

Answers (2)

Tony Hopkinson
Tony Hopkinson

Reputation: 20320

To get the file.

Right Click Project 
Select Properties
Select build tab, 

at the bottom in the output section there's a checkbox called Xml Documentation file.

After you have that, style and transform as desired.

Upvotes: 1

keyboardP
keyboardP

Reputation: 69372

You could use Sandcastle Help File Builder or use Sandcastle directly. I've only the used the Help File Builder in the past but I've heard that using Sandcastle directly can be cumbersome at times, although I don't know how accurate that is. This tutorial might help.

Upvotes: 1

Related Questions