How to disable real time compilation in Visual Studio 2015

前端 未结 6 1427
情话喂你
情话喂你 2021-02-07 06:18

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

相关标签:
6条回答
  • 2021-02-07 06:49

    I just disable this in the Error List window. There is a drop down with these options:

    • Build + IntelliSense
    • Build Only
    • IntelliSense Only

    If I select Build Only, it does not try to find compilation errors in real time.

    0 讨论(0)
  • 2021-02-07 06:51

    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

    0 讨论(0)
  • 2021-02-07 07:00

    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.

    0 讨论(0)
  • 2021-02-07 07:04

    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.

    0 讨论(0)
  • 2021-02-07 07:09

    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.

    0 讨论(0)
  • 2021-02-07 07:14

    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.

    0 讨论(0)
提交回复
热议问题