Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I turn debugging in disassembly off permanently?

Whilst debugging a console app in c# and VS2008, disassembly window appears uninvited.

I am debugging my code line by line using F11. I have break points set and it starts off well then after a call in a method to open database connection, the debugger opens disassembly window and stays there. I have right-clicked on disassembly tab and selected hide but the window pops again as soon as I hit F11.

How do I turn debugging in disassembly off permanently?

like image 842
Doreen Avatar asked May 14 '13 20:05

Doreen


People also ask

How do I turn off just my code Debugging?

To enable or disable Just My Code in Visual Studio, under Tools > Options (or Debug > Options) > Debugging > General, select or deselect Enable Just My Code.

What does stop Debugging do?

Stop Debugging terminates the process you are debugging if the program was launched from Visual Studio. If you attached to the process, instead of launching it from Visual Studio, the process continues running.

How do I disable Debugging in Visual Basic?

You can configure Just-In-Time debugging from the Visual Studio Tools > Options (or Debug > Options) dialog box. To enable or disable Just-In-Time debugging: On the Tools or Debug menu, select Options > Debugging > Just-In-Time.


1 Answers

Go to Debug->Options and Settings, uncheck the box for Enable address-level debugging and that should do what you want.

enter image description here

You also may want to check Enable Just My Code if it is not checked.

like image 120
Scott Chamberlain Avatar answered Nov 15 '22 08:11

Scott Chamberlain