Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embedding Intellisense Xml Documentation in Assembly?

Tags:

I have an assembly containing very thorough XML-based documentation, which is used through Sandcastle to generate the help-files for the product. We also use the output XML files for providing proper Intellisense in Visual Studio when programmers use the assembly obviously.

In order to do this, it seems we have do both supply the user with the assembly ("assembly.dll") and the documentation ("assembly.xml").

Is it somehow possible to embed the documentation within the assembly, so we'd only have to supply the single assembly-file and Visual Studio would be able to extract the information? Maybe embedded as a resource or something like that?

like image 254
ulrikj Avatar asked Oct 14 '08 12:10

ulrikj


1 Answers

Unfortunately you will need to supply both as Visual Studio only knows to look at XML documents for Intellisense.

like image 81
Jason Whitehorn Avatar answered Sep 19 '22 17:09

Jason Whitehorn