How can I create code coverage in .Net Core 2.0?
I tried the following:
"TestPlatform\vstest.console.exe" --collect:"Code Coverage"
But I got this error message:
Data collector 'Code Coverage' message: Cannot find CodeCoverage.exe.
I tried the latest version 2017.2.2 dotCover, which I can get on the local computer, but when the same is done in TFS Build, coverage information is not generated.
I'm not sure when the NetCore Test task in TFS will get code coverage support.
How can I publish results from DotCover to TFS to use the DotCover command line to create Coverage for .Net Core?
source share