Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my solution I have sources of Message Transport assembly. When debugging I would like to skip stepping into hairy sources of this assembly, but still I need to step into handler methods, which it calls. Is it possible to mark somehow that assembly so debugger will skip stepping into it's internal stuff?

It is not appropriate for me to change sources of that assembly, setting special attribute [DebuggerStepThrough].

share|improve this question

1 Answer

up vote 1 down vote accepted

If you go to the Modules window and ensure that symbols for this assembly are not loaded, the debugger won't step into it. It's possible that you have Visual Studio cache the symbols and every time you debug, the symbols are loaded from the cache automatically. Go to Options -> Debugging -> Symbols and make sure no cached symbols are loaded, then debug your solution without loading this particular module's symbols and you should be good to go.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.