Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2008 - Disable .NET Framework debugging

A rather strange question I know... I was previously using the .NET framework source stepping option (tools>options>debugging>general) within Visual Studio 2008.

Now although I have the option turned off, everytime I pause the debugger I start stepping into code I get taken into the .NET framework which takes an age to step back out of as by that point a lot of symbols have been loaded.

Has anyone else had this problem, and does anyone know how to turn it off?

like image 694
Ian Avatar asked Jun 01 '09 13:06

Ian


People also ask

How do I disable Debugging in Visual Studio 2008?

C# and VB.net Projects With your project open, select the “Project” tab, then choose “appname Properties…“. Select “Debug” on the left pane. Check the “Enable native code debugging” box to enable it. Uncheck it to disable it.

How do I disable Debugging in Visual Studio?

To end a debugging session in Microsoft Visual Studio, from the Debug menu, choose Stop Debugging.

How do I stop JIT Debugging pop up?

To enable or disable Just-In-Time debuggingIn the Options dialog box, select the Debugging folder. In the Debugging folder, select the Just-In-Time page. In the Enable Just-In-Time debugging of these types of code box, select or clear the relevant program types: Managed , Native , or Script .

How do I disable Debugging in Visual Studio 2010?

Select Stop debugging from Debug menu to end a debugging session. You also can stop debugging from the processes window. In that window, right-click the executing process and select the Detach Process or Terminate Process command.


1 Answers

Try selecting Enable Just My Code (Managed Only) in the same options menu (ie. Tools -> Options -> Debugging -> General).

This option gets disabled when you enable .Net Framework source stepping.

like image 172
Steve Dignan Avatar answered Oct 21 '22 11:10

Steve Dignan