In Visual Studio 2013, I could disable the option "Show live semantic errors" under "Tools β Options β Text Editor β C # β Advanced.
This functionality is painfully distracting, and I would like to disable it. Unfortunately, these options were removed back in Visual Studio 2015 and still haven't returned to Visual Studio 2017.
Is there any way to disable this option for 2017? I searched everywhere what I can think of ... Does anyone have any ideas?
Behavior that I find distracting / frustrating / etc. It is a constant visual notification that something is wrong with my code. In particular, when I write something ...
As a simple example:
/// <summary> /// /// </summary> public class MyClass { public string DoSomething() { } }
"DoSomething" will be identified (via a red squiggly string) as not returning a value. If I am in the process of writing my method, I do not want to remind you that this is wrong. This example, although fairly simple, illustrates the problem. Real-time lighting can be really distracting as things get complicated. I know that many have suggested making the squiggle color the same as the background color. The problem is that as soon as I compile, I would like to see these screams ...
I disabled all analyzes at the solution level and project level.
c # visual-studio visual-studio-2017
user633077
source share