views:

46

answers:

1

In my project, static checking is disabled, but still, when I run msbuild.exe with cmd, it starts static checking for each project... Is there a way, with parameters, to disable this?

+1  A: 

The following should do it:

MSBuild ... /p:RunCodeAnalysis=false
Ade Miller