Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to switch between debug and release in Visual C# 2010 Express?

How do I switch between debug and release in Visual C# 2010 Express?

I have looked in the project properties, but it seems to be missing. What am I missing?

like image 479
Thiago Padilha Avatar asked May 11 '10 16:05

Thiago Padilha


People also ask

Can I debug in release mode Visual Studio?

You can now debug your release build application. To find a problem, step through the code (or use Just-In-Time debugging) until you find where the failure occurs, and then determine the incorrect parameters or code.

How do you exit debug mode or code?

VS Code maintains a debug session while the program is running, and pressing the Stop button terminates the program.


1 Answers

  1. Enable the ToolsSettingsExpert Settings menu option

  2. Go to ToolsOptions
    In the dialog box, check Show All Settings option in the bottom left.

  3. In the above dialog, now choose Projects and SolutionsGeneral.
    Check the option Show advanced build configurations.

  4. Click OK.

You should be able to see the Release/Debug options in the toolbar now.

like image 82
gotopie Avatar answered Sep 21 '22 06:09

gotopie