I'm after a source analysis tool that will run on mono ( think stylecopcmd ), stylecop has a number of holes that stop it working for me without gross hacking ( eg开发者_开发百科 hard-coded to use "\" as a directory separator )
I am happy using gendarme to analyse assemblies but would like to check the source as-well.
After thinking about this on and off for a while now, I decided to modify StyleCopCmd to run on Linux under mono. http://github.com/inorton/StyleCopCmd
The only changes I have made so far have been to use Path.DirectorySeparatorChar
instead of \
;
You can use Reflector on any .NET assemblies, mono or vs.
For static analysis there is nDepend, which is a commercial product.
精彩评论