.net - MSBuild : how to suppress the warning summary at the end of the build -


On an MSBuild script, all the errors and warnings are written twice: - Once they occur - as one Summary at the end of the construction

I have heard that at the end of the construction it is possible to avoid the summary, but I did not find the option in documentation.

thanks

you / consoleloggerparameters : NoSummary can use or / fileloggerparameters: NoSummary option.

For more information, msbuild /? View / Details.

Comments

Popular posts from this blog

qt - switch/case statement in C++ with a QString type -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -

Python's equivalent for Ruby's define_method? -