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>
Added minimal reproduction at https://github.com/rcocks-hl/NUnit3Examples
Is this a regression or it never worked before?
@nohwnd Unfortunately I can't answer that question, this is the first time I've tried these settings.
We have also encountered this issue. It was working when we were using .NET 6 and we recently upgraded our project to .NET 8 and this has stopped working as before.