How do I get Visual Studio to stay on one thread when debugging?

When you say, “when debugging a certain thread, visual studio will just jump around randomly to different threads”, do you mean that as you step through code on a particular thread you may hit a breakpoint on a different thread? If so, you can use the Thread window to ‘freeze’ threads other than the one … Read more

‘Step Into’ is suddenly not working in Visual Studio

With Visual Studio closed: Delete the solution’s suo file (contains debug information, user settings such as break points, bookmarks, and other user settings.) Delete the Visual Studio cache files (see below) Delete all temporary files (a shift from VS9 to VS10 is that VS10 uses the temp folder) Manually delete all obj and bin folders … Read more

Visual Studio 2015 diagnostics tool does not support current debugging configuration

So I resolved my issue. The Diagnostic Tools window currently does not support: Windows Store projects that are using JavaScript Windows Store projects that are running on a Windows Phone Debugging with Use Managed or Native Compatibility Mode In my case I had ‘Use Managed Compatibility Mode’ enabled. To change this go to the following … Read more