dotCover not showing all of the projects in a solution

前端 未结 2 788
失恋的感觉
失恋的感觉 2021-01-12 20:28

Let me start by saying I\'m new to both ReSharper and dotCover and that I\'m using v10.0.2 of both.

The attached screenshot shows solution explorer in VS and the cov

相关标签:
2条回答
  • 2021-01-12 20:33

    In my case the *.pdb files where deleted by a post-build event. After changing that, coverage-analysis worked again. This post from the support forum of jetbrains helped me

    0 讨论(0)
  • 2021-01-12 20:36

    This is due to shadow copying - when enabled, dotCover expects .pdb files to be copied too, and the standard shadow copy that xunit performs doesn't do this. If you disable shadow copy in the Unit Testing options page, it'll work fine. I think the xunit runner can be updated to fix this.

    The YouTrack issue that describes what's going on is here: DCVR-7976

    0 讨论(0)
提交回复
热议问题