I aimed at dotnet-test-mstest": "1.0.1-previewthe dc2 core in my test project.
Edit:
Good. I am targeting the .NET desktop. But that should not make any difference.
project.json
{
"version": "1.0.0-*",
"testRunner": "mstest",
"dependencies": {
"Betgame": "1.0.0-*",
"dotnet-test-mstest": "1.0.1-preview",
"MSTest.TestAdapter": "1.0.0-preview",
"MSTest.TestFramework": "1.0.0-preview",
"NETStandard.Library": "1.5.0-rc2-24027"
},
"frameworks": {
"net461": { }
}
}
at startup dotnet testit looks good!

How can I get the output as an xml file to handle this in my build process? Any ideas? Or is it not yet supported?
So far I have tried dotnet test -xml test-results.xml, but no way out has been created.
source
share