C# Class Library method summaries not showing in intellisense of vb.net project C# Class Library method summaries not showing in intellisense of vb.net project xml xml

C# Class Library method summaries not showing in intellisense of vb.net project


In C# library, go to the properties on the build tab, and check the checkbox for including XML documentation and specify the name and path. After that include the new library in your VB.Net project.


one reason could be resolved by importing the namespace needed

another reason could be due to faulty writing

if you send the code where the problem is we might be able to help you


If you're using source control (TFS or Github) then you need to the following:

  • Check in ( Push) for safe return point (base line)
  • Delete the references from the project.
  • Delete the custom dll's from the solution.

At this point the libs are marked as [removed], if you would add them again at this point, they will just be marked as [changed] again. This did not include the summaries for me.

  • Check in (push). dll's are now removed from source control as well.
  • Drag and drop the dll's (including xml) into the solution (I recommend using this method for including dll's
  • Add references to these dll's via Browse.
  • Check if you have summaries.
  • Check in (push).