I'd like to find out all the places in my solution where we call various libraries for documentation.

The way I'm currently doing this is by looking at the assembly in the object browser to find its namespaces, then searching the entire solution for "using thatNamespace", commenting those using statements out, and looking at the resulting build errors.

I have a feeling there is a better way though. Isn't there?

1

There are 1 best solutions below

2
On

I am not sure how helpful this will be, but if you right click the references directory in your solution explorer, you can click 'optimize references', from there you can see what is used and what isn't used.

It also has a tree structure where you can dig into where it was used, but it doesn't actually tell you in the pop-up tool so you have to open each file. Hope this helps