Reputation: 7282
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.
Upvotes: 1
Views: 455
Reputation: 7282
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 \
;
Upvotes: 2