Metrics show different values cyclomatic complexity . Which estimation algorithm uses openCover and built-in analyzer for VisualStudio.
Asked
Active
Viewed 182 times
1 Answers
0
OpenCover's cyclomatic complexity number comes from the IL (which is what you get after compilation) not the source code which is probably what Visual Studio is using. OpenCover only uses the compiled binaries for instrumentation hence it will run against any .NET assembly regardless of language as long as the PDB is available.

Shaun Wilde
- 8,228
- 4
- 36
- 56