Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resharper keeps disabling "Show live semantic errors" in Visual Studio 2010

How do I keep Resharper from disabling the "Show live semantic errors" & "Underline errors" options in Visual Studio? It seems that whenever I go and manually enable them, they somehow revert back to disabled after some time - I suspect Resharper of doing this. Is there any remedy for this?

like image 407
milous Avatar asked Sep 18 '11 22:09

milous


1 Answers

You have to turn off ReSharper's own code analysis if you want the VS error detection options to be preserved.

To do that, go to ReSharper > Options > Code Inspection > Settings, and deselect "Enable code analysis".

If ReSharper code analysis is on, it turns VS native C# error highlighting off on every initialization. This VS functionality is considered redundant in light of ReSharper's 1k+ own code highlightings.

like image 81
Jura Gorohovsky Avatar answered Nov 15 '22 03:11

Jura Gorohovsky