vote up 3 vote down star

A friend of mine only as access to the Express editions of Visual Studio and I am trying to help him refactor to remove a lot of duplication.

flag

71% accept rate

5 Answers

vote up 2 vote down check

You could take a look at Simian or DuplicateFinder. Neither have a dependency on the IDE, although you can integrate Simian quite easily.

link|flag
vote up 3 vote down

Clone Detective appears as though it might work for you. I haven't used it before, but I stumbled across it on codeplex this week.

link|flag
I've used it once or twice before but it did report some false positives, not many though. – TWith2Sugars Apr 16 at 21:58
Looking at the page, this states VS Standard or higher. It won't work with Express. – BlackWasp Apr 18 at 17:10
vote up 0 vote down

More as fyi, since you mentioned 'express edition' you might need to look for something that would work outside of VS, since I don't believe the express editions support plugins

link|flag
The express editions explicitly don't support plug-ins. Technically it does, as some of the features shipped by MS are plug-ins, but hoops are jumped to make them work. – Simeon Pilgrim Apr 17 at 10:47
vote up 0 vote down

Your friend should take a look at Gendarme, a FOSS and cross-platform alternative to Microsoft's FxCop/Code Analysis which is part of the Mono project. It includes rules that check for duplicated code.

link|flag
vote up -1 vote down

Try StyleCop tool

link|flag
StyleCop does not include rules for finding duplicate code. – Christian Sep 4 at 7:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.