Search code examples
test-coveragecode-climate

How can I monitor the quality of my .NET code?


I am currently developing a Ruby project and I often use code climate to see the quality of my code. The thing is, we will rewrite the code in .NET, so my boss wants to be able to monitor the quality of code by uploading the code into tool just like in codeclimate.

Do you guys know any tool alternative (free or not) to code climate for .NET?


Solution

  • I am not that familiar with code climate. However there are few tools in .net arena which an do the same. You can use Visual Studio Static Analysis tool for code analysis. And also you can use nCover product as well. There is one more product called DotTrace from Jetbrains which is also a nice product in my opinion. And with Visual Studio 2015 you will receive more reading on memory usage during code execution etc. You may want to look at those features as well.