IanNorton
IanNorton

Reputation: 7282

Source Analysis tools for Mono

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

Answers (2)

IanNorton
IanNorton

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

Oded
Oded

Reputation: 498904

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

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

Upvotes: 0

Related Questions