Where can I disable live code analysis in Visual Studio 2017? This pops up every time I start my solution. I do not need this:
I\'ve followed this supp
only if all Roslyn installed components in Extensions and Updates are disabled.
I'm using a workaround, global setting forces analyses runs at build on solution projects, in editor runs at any change but now editor is a lot faster with bellow workaround:
Tools -> Options -> Text Editor -> C# (in my case) -> Advanced -> Perform editor feature analysis in external process (experimental) -> select it and save.
More details on closed issue (solution is for VS2019):How to disable live code compilation/analysis in Visual Studio 2017?