I'm trying to use OpenCover to generate a coverage report for the automated/manual testing performed on a web site (as in this link). I tried the following;
Build the .net core 2 web app in the standalone mode and generate the exe.
Use following to generate the report:C:\OpenCover\OpenCover.Console.exe -target:”C:\myproj\bin\Debug\myproj.exe” -output:C:\myproj\CoverageReports\myproj.results.xml -register:user
This generates the report with empty results.
Hosting in IIS 10. However it seems that opencover does not support IIS 10 yet.
Is it possible to get the manual or automated test code coverage using opencover?