David Veeneman
David Veeneman

Reputation: 19122

How do I create an XML Intellisense file for my DLL?

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.

Upvotes: 20

Views: 6071

Answers (1)

Andrew Cooper
Andrew Cooper

Reputation: 32576

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.

Upvotes: 30

Related Questions