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?