Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to re-enable standard C# errors in error list after uninstall?

I've noticed that ReSharper disables the standard VS2010 C# language service's error reporting to the error list. I have to do a full build in order to get C# to provide errors that ReSharper doesn't report. When I uninstall ReSharper, C# remains in its disabled/broken state. How can I re-enable it so that I get language service-generated errors in the error list?

like image 666
Andrew Arnott Avatar asked Oct 07 '10 03:10

Andrew Arnott


People also ask

How do I enable C ++ 17 in G ++?

C++17 features are available since GCC 5. This mode is the default in GCC 11; it can be explicitly selected with the -std=c++17 command-line flag, or -std=gnu++17 to enable GNU extensions as well.

What is STD C ++ 17?

C++17 is a version of the ISO/IEC 14882 standard for the C++ programming language. C++17 replaced the prior version of the C++ standard, called C++14, and was later replaced by C++20.

How do I run C code in Visual Studio?

After writing the code, right-click on the program, as shown below. Click on the Run Code option or press Ctrl + Alt + N from the button.

How do I select C++ version in Visual Studio?

To set this compiler option in the Visual Studio development environment. Open the project's Property Pages dialog box. For more information, see Set C++ compiler and build properties in Visual Studio. Select the Configuration Properties > C/C++ > Language property page.


2 Answers

Tools -> Options -> Text Editor -> C# -> Advanced ->
    "Underline errors in the editor" (check)
    "Show live semantic errors" (check)
like image 174
Andrew Arnott Avatar answered Oct 07 '22 15:10

Andrew Arnott


This hasn't happend to me. But I running devenv.exe /reset and maybe devenv.exe /ResetSkipPkgs once should fix the problem.

like image 41
bitbonk Avatar answered Oct 07 '22 14:10

bitbonk