I am working on a couple of projects (A and B) in a large VS2010 solution (all in C#). There are many cases where methods from project A call through to one or more of the
Yes, this is possible by enabling Just My Code and preventing symbol loading for the DLLs you don't care about.
To enable Just My Code:
To prevent symbols from loading for a DLL:
Now, when you do an F11 step-into from project A into project B that goes through project C, as long as you don't have the symbols for C loaded, the step-into will go directly into B.
To ensure that the symbols for C aren't loaded: