In Visual Studio, if you have a solution with many projects, can you instruct the debugger to ignore some of the projects? Treat them as external DLLs in this sense?
We have a lot of helper code that I would like to debug. For example, if I am in a function call and I enter it, I would like to skip the IoC code and the base code of the base class and go to the meat of the classes I'm working on. Most of the things I would like to step over are in support assemblies.
I would like to avoid unloading the projects, as other team members are actively working on these parts, and I want to pick up their changes when I receive the latest data from the control source. Similarly, I do not want to configure an alternative solution for the same reason. It is also impractical to put the debugger attributes on the code of other people.
If there is a way to instruct VS, I am only interested in individual assemblies, that would be ideal.
source share