vstest
vstest copied to clipboard
LoggerRunSettings not working to set verbosity
Description
When I run:
dotnet test -v:q --logger "console;verbosity=minimal" --settings .\.runsettings <project>
Then I get quiet build logging and normal verbosity logging.
But when I drop the --logger
switch and rely on the LoggerRunSettings
block in my .runsettings
file, then I don't get normal verbosity output.
<LoggerRunSettings>
<Loggers>
<Logger friendlyName="console" enabled="True">
<Configuration>
<Verbosity>normal</Verbosity>
</Configuration>
</Logger>
</Loggers>
</LoggerRunSettings>