How to publish results using dotnet test command
You can see all the dotnet test options by executing dotnet test –help. One of the options is -l, –logger, which gives some great information: Specify a logger for test results. Examples: Log in trx format using a unqiue file name: –logger trx Log in trx format using the specified file name: –logger “trx;LogFileName=<TestResults.trx>” More … Read more