vote up 6 vote down star
1

I've recently started using it. However, after running it against one of my company's largest project. It turns up mountains of problems.

The list of problems was so overwhelming it would take days to find and fix some, if not all of the stuff.

Now, I know that it's not very practical to fix everything FxCop tells you to fix. But as I am new to this little tool...

What are some good tips and tricks on using FxCop effectively?

On a new project and on an existing project?

If also provided the programmers at my company generally writes good code?

flag

6 Answers

vote up 4 vote down check

At first you can start with a small set of rules at the beginning. And then increase the number of rules you apply.

And also you must have a look at this question's answers...

link|flag
vote up 3 vote down

Create a baseline by running fxCop once and excluding everything it finds.

Save this as a .fxcop file and use that to run future checks.

Then, as you make changes to your code you'll create new, manageable violations. FxCop will reflag things if you change a method's signature, for example.

If you have time, you can tackle a category of violations one at a time after that by un-excluding them.

link|flag
vote up 1 vote down

Sort the output by the type of rule ... then go through the sort list to see which subset of the broken rule types are important and worth fixing IYO.

link|flag
vote up 1 vote down

Not everything that fxCop reports are "mustfix" problems. For example inserting user input into a database command using string concatenation is much worse than style issues such as Hungarian or catching Exception rather than a more specific exception.

link|flag
vote up 2 vote down

Definitely filter out the ones that aren't important to your organization. For example, the entire Internationalization block was largely unimportant to one of our project so we just excluded it and that alone was enough to make the list manageable. (There are some great suggestions in that block that we wanted to implement but they weren't important to app at the time.)

You can also create a few FxCop projects grouping the exceptions until you get the number down to something manageable ("fix these now," "fix these soon," "fix these whenever").

I'm pretty sure I spent a solid week of excluding/including violations until we had a list that was appropriate for our policies. Then another 2-3 just fixing violations. :-(

link|flag
That's nearly equals to a month... :-( – chakrit Jan 10 '09 at 5:11
Sad but true... The later you run it in a project the worse off you are -- learned that from experience. – Austin Salonen Jan 12 '09 at 2:53
vote up 1 vote down

The thing about FxCop is, it's an excellent tool for the specific use case it was designed for. It was designed to help class library developers. So if you're Developer Express or Infragistics and you're creating a code library to be used by developers worldwide, you need good naming, good globalization, and a host of other things.

Thus if you name all your forms things like frmMain, FxCop will complain because that looks ugly in a class library. But if you're just working on an in-house WinForms app, you don't have to care. Likewise, you'll go crazy with all the stuff about IFormatProvider, MessageBox overloads that specify text direction, and so on. But unless you're creating code for a global audience, you can ignore those.

The important thing is to understand the intended audience of FxCop. You can ignore certain recommendations based on the ways you differ from that audience.

link|flag

Your Answer

Get an OpenID
or

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