You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With .NET Core 3.0 and with the latest Microsoft.NET.Test.Sdk16.3.0 NuGet package installed in your test project, you can now create HTML reports as well as TRX XML files like so:
dotnet test --logger trx;LogFileName=foo.trx --logger html;LogFileName=foo.html
With .NET Core 3.0 and with the latest
Microsoft.NET.Test.Sdk
16.3.0
NuGet package installed in your test project, you can now create HTML reports as well as TRX XML files like so:The DotnetCoreTestSettings.Logger property is currently a
string
and needs to be anIEnumerable<string>
.The text was updated successfully, but these errors were encountered: