20

I am creating a DLL in C#, using VS 2010, and I have created XML comments for all of its members. When I build the DLL, how do I generate the XML file that will provide Intellisense for the DLL? Thanks for your help.

David Veeneman
  • 18,912
  • 32
  • 122
  • 187

1 Answers1

29

In the project properties page, go to the Build tab. In the Output section near the bottom there's a check-box labelled "XML documentation file" that needs to be checked.

Andrew Cooper
  • 32,176
  • 5
  • 81
  • 116
  • 11
    This is odd. If you've gone to all the bother of typing the damn things, why wouldn't you want them bundled with your dlls by default? – David Oct 26 '12 at 10:06