Visual Studio 2010 External Documentation API Documentation

When I use an external library like Spring.Net, NUnit, NLog, etc. I do not see documentation for public methods (intelisense). How can i fix this?

+4
source share
1 answer

You need an XML file containing IntelliSense information for the assembly. Make sure that it is stored in the same directory as the reference assembly for these libraries, it has the same name as the assembly, but with a .xml file name extension. Maybe you forgot to copy it or clean it too aggressively?

+6
source

Source: https://habr.com/ru/post/1333886/


All Articles