OpenCover was running fine until I replace this line of code :
myObject = myObjectRepository.SelectAll().ToList();
by
myObject = myObjectRepository.SelectAll().OrderBy(x => x.MyProp).ToList();
and then I loose the opencover's report :
No results, this could be for a number of reasons. The most common reasons are: 1) missing PDBs for the assemblies that match the filter please review the output file and refer to the Usage guide (Usage.rtf) about filters. 2) the profiler may not be registered correctly, please refer to the Usage guide and the -register switch.
Does anybody can explain that to me?
My bad.
I was using an old version (4.5.3522).
I updated to the version 4.6.519 and this problem disappeared.