How do you prevent Visual Studio from switching to the Code Analysis tab after each build?

前端 未结 3 620
渐次进展
渐次进展 2021-01-01 08:44

After each build, Visual Studio 2012 switches from the Solution Explorer to the Code Analysis tab, usually with the yellow \"No code analysis issues were detected.\" (Might

相关标签:
3条回答
  • 2021-01-01 09:19

    Just found very helpful blog post about your issue Temporarily disable the C# static code analysis for a whole VS instance.

    Also I have found way to permanently disable Code Analysis for all VS 2012 instances: You need to add Windows environment variable with name "DevDivCodeAnalysisRunType" and value "Disabled" (all without quotes). There is helpful post about Windows environment variables How To Add/Edit Environment Variables in Windows 7.

    Hope that helps.

    0 讨论(0)
  • 2021-01-01 09:29

    VS 2012

    The best answer I have found so far is to drag the Code Analysis view's tab away from the Solution explorer. I've docked mine below the Solution explorer and made it about 1 inch high - so I can still see what it is reporting on the rare occasions when I wish to check it, but without losing my Solution Explorer all the time.

    It's still unnecessary but a lot less irritating.


    Update - VS 2013

    In VS 2013 you can now click the Settings option in the Code Analysis view, and disable the Show window when issues are detected option.

    0 讨论(0)
  • 2021-01-01 09:36

    Right Click Project --> Properties --> Code Analysis Tab --> Uncheck Enable Code Analysis on Build.

    Hope that Helps.

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