tags:

views:

35

answers:

2

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.

+2  A: 

You can use Reflector on any .NET assemblies, mono or vs.

For static analysis there is nDepend, which is a commercial product.

Oded
+1  A: 

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 \;

IanNorton
Try make a contribution or write a change request
abatishchev