vote up 9 vote down star
2

How is it possible to get the FxCop custom dictionary to work correctly?

I have tried adding words to be recognised to the file 'CustomDictionary.xml', which is kept in the same folder as the FxCop project file. This does not seem to work, as I still get the 'Identifiers should be spelled correctly' FxCop message, even after reloading and re-running FxCop. Using version 1.36.

flag

73% accept rate
I can confirm that this happens on my machine too. I have used ProcessMonitor to confirm that the CustomDictionary.xml file is being read by FxCop, but the error remains. – Darren Oster Dec 12 '08 at 2:57
Good work Darren :) – Thomas Bratt Dec 12 '08 at 9:31
So far I've found this link which may help: Creating a custom dictionary for code analysis in VS2008 duncanjasmith.blogspot.com/2008/07/… – Thomas Bratt Dec 13 at 14:13

3 Answers

vote up 5 vote down

If you use it inside Visual Studio...

From Visual Studio Code Analysis Team Blog

To add a custom dictionary to a C# and Visual Basic project is simple:

  1. In Solution Explorer, right-click on the project and choose Add -> New Item...
  2. Under Templates, select XML File, enter a name for the dictionary, such as CodeAnalysisDictionary.xml and click Add
  3. In Solution Explorer, right-click on the XML file and choose Properties
  4. In the Properties tool window, under Build Action choose CodeAnalysisDictionary
  5. In Solution Explorer, double-click on the newly created dictionary to open it
  6. In the XML editor, paste the following, replacing "productname" and "companyname" with your team's equivalents:

    <Dictionary>
         <Words>
            <Recognized>
                <Word>"productname"</Word>
                <Word>"companyname"</Word>
            </Recognized>
        </Words>
    </Dictionary>
    

You are now ready to start entering your own custom words. Simply add a new element for each word in your project that does not exist in the dictionary. Each word is case-insensitive, so any casing of the word will be recognized. Code Analysis will automatically pick up the custom dictionary the next time it is run.

link|flag
CodeAnalysisDictionary triggers a “Property value is not valid.” error on my system. – Garth Roxburgh-Kidd Jan 27 at 11:24
"under Build Action choose CodeAnalysisDictionary" I don't see this option - all I see are 'None', 'Compile', 'Content' & 'Embedded Resource' – Damien Jan 31 at 9:05
this is probably only for vs2010 – Cohen Mar 24 at 15:59
I believe that this is actually for Team System not Professional. – John Gietzen May 22 at 19:06
vote up 3 vote down

The easiest way is to just call it "CustomDictionary.xml" and put it in your solution folder, where FxCop (1.36 tested here) will pick it up automatically, if you have

<CustomDictionaries SearchFxCopDir="True"
                    SearchUserProfile="True"
                    SearchProjectDir="True" />

in your FxCop project file.

Alternatively you can specify it via the /dictionary command line parameter.

link|flag
vote up 2 vote down

To my knowledge, FxCop 1.35 and onwards use two sources for the dictionary.

  • The Microsoft Office dictionary (adding words via MS Word etc. should work)
  • A 'CustomDictionary.xml' file stored in the FxCop program folder, rather than the project file folder.
link|flag
I tried the Microsoft Office dictionary. It didn't work. – Garth Roxburgh-Kidd Jan 27 at 11:30

Your Answer

Get an OpenID
or

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