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!

Can't see <summary> outside DLL

Status
Not open for further replies.

Zinno

Programmer
Apr 7, 2003
2
BE
I wrote a dll file/project in C#, I added <summary> descriptions to methods, variables and classes.

When i add my compiled DLL file in references in a new C# console application, the summaries written in the DLL don't show anymore.

How can i fix this?


thx allot.
 
You need to make sure your project settings have the XML file value set (Project | Properties | Configuration Settings | XML Documentation File). Then rebuild your solution.

When you go to another project and set a reference, not only will your DLL file be copied to your bin\debug directory, but the XML file will be too. You'll then have Intellisense for your referenced DLL.

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top