What is output at the different MSBuild output verbosity levels?

前端 未结 2 1959
别那么骄傲
别那么骄傲 2021-01-17 07:38

What is the definition of what is output at the different levels of MSBuild build output verbosity?

  • Quiet
  • Minimal
  • Normal
  • Detailed
2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-17 08:18

    There exists the same question on social.msdn:

    Quiet: only shows the result of your build.
    Minimal: shows some configurations of your msbuild, and the CSC task.
    Normal: This will show all the targets and its mainly steps.
    Details: In addition to normal, this flag shows the task and it's implementation within the each target.
    Diagnostic: Contains all the information that a MSBuild need and produce, it's switches, parameteres, prerequisites and etc. The input parameter of the target and task, and also contains the value of the input and output parameter, the detail steps of the task execution. The time execution for each task.

    See how default logger uses verbosity here.

提交回复
热议问题