How can I disable live code analysis in Visual Studio 2017?

前端 未结 4 1181
北恋
北恋 2021-02-07 01:01

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

4条回答
  •  抹茶落季
    2021-02-07 01:31

    It's not possible In VS2017

    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.

    UPDATE: It's possible in VS2019 16.5

    More details on closed issue (solution is for VS2019):How to disable live code compilation/analysis in Visual Studio 2017?

提交回复
热议问题