So in a C# .NET v4 project in VS2010, I’ve got a debugging issue. Frequently, if not most of the time, the debugger freezes when you try to use it – typically on exceptions, it’s usually OK if you try to manually break.
The only way I’ve discovered to fix this is to kill the debugged program ([projectname].vshost.exe), which unlocks the IDE and executes all the mouse presses and things that happened in its absence.
The main Windows GUI is not affected. There is minimal CPU load. Waiting does nothing. The output window (full of “Loaded xxx, symbols loaded”) is uneventful. I’ve read about symbol servers deadlocks, or deadlocks in the GUI, but neither of those are the issue here (the symbol servers are disabled).
Anyone have any ideas? This is giving me a big problem, because I can’t effectively debug the program.
Never did figure this out. Oh well. Limped by with task manager open all summer, but made it through OK.