vote up 2 vote down star
3

I want to create extra rules in FXCop. Custom Rules to help ensure specific best practices like checking against inline sql.

I'm really looking for good resources and examples. Thanks!

flag

2 Answers

vote up 2 vote down check

This tutorial seems really comprehensive.

HTH, Kent

link|flag
vote up 0 vote down

You can also use the tool NDepend to write your custom rules and/or harness some of the 200 default rules. The cool fact about NDepend is that it comes with a dedicated and seamless language to write your own rules: Code Query Language (CQL)

For example the following CQL rule will warn if it finds method with more than 20 lines of code:
WARN IF Count > 0 IN SELECT METHODS WHERE NbLinesOfCode > 20

link|flag
NDepend is cool, but not free... – Martinho Fernandes Feb 21 at 3:13

Your Answer

Get an OpenID
or

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