.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