Express version is missing Debug menu-> exceptions

I use. VS 2013 Express When debugging, I need to automatically dwell on exceptions. try to follow this. http://msdn.microsoft.com/en-us/library/d14azbfh.aspx#AddExceptionsCommand It says that I need to add the Exceptions command to the Debug menu

  • From the Tools menu, select Configure.
  • The Preferences dialog box appears.
  • Go to the "Commands" tab and select "Debug" in the "Menu Bar" list.
  • Click Add Team.
  • In the Categories section of the Add Command dialog box, click Debug.
  • In Commands, select Exceptions and click OK.

But in step 6, the teams do not have Exeptions enter image description here

Also, I tried to remove Enable only my code, and this did not work.

+6
source share
4 answers

Another user reported missing โ€œexceptionsโ€ in the Microsoft debugging menu and actually received recognition from Microsoft (although not from the product group, but not from acknowledging that this was a bug).

https://connect.microsoft.com/VisualStudio/feedback/details/882780/exceptions-comman-missing-in-vs-2013-express-for-web

Why you can add your vote to this report on this site; I am having this problem and I did it too.

Potential work here: Exceptions are present in Visual Studio Express for desktop. And you can install this edition side by side with the web edition. If you can figure out how to call your project's executable from the debugger in the desktop editor, you should have control over the exceptions there.

+2
source

Just FYI ---

I am using VS Express 2010 (VB) and have not seen debug exceptions. Based on the screenshot above, I just pressed CRLT-ALT-E and it opened .. (!)

Its a little unclear if VB 2010 Express has this option or not or how to display it, but the key combination opened it.

Then I was able to disable the option that I need. In my case, "PInvokeStackImbalance"

enter image description here

+1
source

The exception menu does not appear in Visual Studio Web Developer Express. It only appears in Visual C # Express.

However, you can circumvent all exceptions. You can try disabling "Just My Code" debugging, which will catch exceptions thrown in the CLR code and related libraries.

To do this, open Tools -> Options -> Debugging -> General and uncheck "Just My Code" (or "Include only my code").

if it doesn't work try

 Debug -> Exceptions -> Common Language Runtime Exceptions - check "when thrown" 

enter image description here

If you do not see an exception, try changing your settings by following this guide.

Contact here for documentation.

Update

if it still does not work try

 Tools menu >> Import and Export Settings >> Reset all settings. Then choose C# Development Environment. 
0
source

Many of the configuration and integration features for the Visual Studio IDE are not available in the free versions of Express, but you can easily access the Exceptions menu without using them.

Press F5 to start debugging, then select Debug / Exceptions ... Enable the "C ++ Exceptions" checkbox "Abandoned". Click OK

-1
source

Source: https://habr.com/ru/post/972298/


All Articles