Skip to content
Kevin B edited this page Jul 23, 2017 · 7 revisions

MSBuild output

AutoDI and Fody both output a lot of diagnostic information on build. If you are not seeing this in the Output window try turning up the MSBuild output verbosity. I find setting the output level to Detailed to be sufficient.

AutoDI output

AutoDI supports additional configuration controlling how much debug output it produces. If you are trying to debug an issue with the container I suggest turning up the log level to Verbose.

<AutoDI.Container DebugLogLevel="Verbose" />

The possible values are:

  • None - no debug output will be produced
  • Default - this is the normal setting
  • Verbose - diagnostic level output, useful for debugging issues.

This setting will have no affect on warnings or errors.

Clone this wiki locally