Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to generate c# documentation to a chm or html file in visual studio 2012?

i have read How to generate C# documentation to a CHM or HTML file?. but, i use visual studio 2012 and all of the answer to that question is in visual studio 2010 and lower. so, how i generate it in visual studio 2012?

like image 710
koponk Avatar asked Dec 20 '22 10:12

koponk


2 Answers

Sandcastle Help File Builder is my favourite..

http://shfb.codeplex.com/

You simply code as normal and it generates itself.

There is a getting started tutorial here:

http://www.ewoodruff.us/shfbdocs/Index.aspx?topic=html/b772e00e-1705-4062-adb6-774826ce6700.htm

like image 111
hutchonoid Avatar answered Dec 22 '22 23:12

hutchonoid


Sandcastle will certainly do the job, however I prefer doxygen and it provides good documentation. It can also generate class diagrams for your code.

like image 28
ScruffyDuck Avatar answered Dec 22 '22 22:12

ScruffyDuck