Is there a way to disable the real time compilation in Visual Studio 2015?
It\'s grinding to a halt whenever I make changes that have a ripple effect throughout my depe
I just disable this in the Error List window. There is a drop down with these options:
If I select Build Only, it does not try to find compilation errors in real time.
In visual Studio 2015 go to tools
, options
, text editor
, C#
, Advanced
and uncheck Enable full solution analysis. This should stop your problem as the solution won't be checked every time unless you build it.
Hope this helps you
This is not an answer, but I want to post a screenshot of what my Tools > Options > Text Editor > C# > Advanced section looks like.
I am using VS2015 Community Update 1 and I do not have the "Enable full solution analysis" option, or some of the other ones in the screenshot above.
I found one setting in Resharper. Sheck it and you dont see the squiggles. Resharper Options/Code Inspection/Settings/Visual Studio integratinon/Suppress Visual Studio squiggles.
Go to Options -> TextEditor -> C# -> Advanced. Under Editor Help, disable "show diagnostics" for closed files. This option disables the analyzers from running on all closed files in the solution and the analysis is performed only on the Open/Active files in VS.
Go to Options -> Text Editor\C# -> Advanced: Uncheck "Underline errors" and "Show live semantic errors". Its also called compile on save. Worked on MS Visual Studio Ultimate 2013, haven't installed the 2015 yet.