My debugger keep jumping into debugging the IL instead of jumping to debug code of another assembly. How can I turn it off?
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.
|
|
|
Visual Studio right? Tools -> Options Click the Debugging section then deselect the Show disassembly if source is not available checkbox But that will leave you without any debug information if source is not available. It sounds like the debug information is missing from those assemblies. Maybe they were built in release mode? Or the pdb files have not been copied? Of course if you don't have access to the original source code then it won't make any difference |
|||
|