How to get the FxCop custom dictionary to work? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T16:45:07Zhttp://stackoverflow.com/feeds/question/359290http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work9How to get the FxCop custom dictionary to work?Thomas Bratt2008-12-11T13:13:14Z2009-11-25T12:06:39Z
<p>How is it possible to get the FxCop custom dictionary to work correctly?</p>
<p>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.</p>
http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work/371217#3712172Answer by andypaxo for How to get the FxCop custom dictionary to work?andypaxo2008-12-16T12:54:03Z2008-12-16T12:54:03Z<p>To my knowledge, FxCop 1.35 and onwards use two sources for the dictionary.</p>
<ul>
<li>The Microsoft Office dictionary (adding words via MS Word etc. should work)</li>
<li>A 'CustomDictionary.xml' file stored in the <em>FxCop program folder</em>, rather than the project file folder.</li>
</ul>
http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work/446429#4464296Answer by spinodal for How to get the FxCop custom dictionary to work?spinodal2009-01-15T11:33:34Z2009-01-15T11:33:34Z<p>If you use it inside Visual Studio...</p>
<p>From <a href="http://blogs.msdn.com/fxcop/archive/2007/08/20/new-for-visual-studio-2008-custom-dictionaries.aspx" rel="nofollow">Visual Studio Code Analysis Team Blog</a></p>
<blockquote>
<p>To add a custom dictionary to a C# and
Visual Basic project is simple:</p>
<ol>
<li>In Solution Explorer, right-click on the project and choose Add -> New
Item...</li>
<li>Under Templates, select XML File, enter a name for the dictionary, such
as CodeAnalysisDictionary.xml and
click Add</li>
<li>In Solution Explorer, right-click on the XML file and choose Properties</li>
<li>In the Properties tool window, under Build Action choose
CodeAnalysisDictionary</li>
<li>In Solution Explorer, double-click on the newly created dictionary to
open it</li>
<li><p>In the XML editor, paste the following, replacing "productname" and
"companyname" with your team's
equivalents:</p>
<pre><code><Dictionary>
<Words>
<Recognized>
<Word>"productname"</Word>
<Word>"companyname"</Word>
</Recognized>
</Words>
</Dictionary>
</code></pre></li>
</ol>
<p>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.</p>
</blockquote>
http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work/726358#7263583Answer by David Schmitt for How to get the FxCop custom dictionary to work?David Schmitt2009-04-07T15:31:49Z2009-04-07T15:31:49Z<p>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</p>
<pre><code><CustomDictionaries SearchFxCopDir="True"
SearchUserProfile="True"
SearchProjectDir="True" />
</code></pre>
<p>in your FxCop project file.</p>
<p>Alternatively you can specify it via the <code>/dictionary</code> command line parameter.</p>
http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work/1796513#17965130Answer by Grhm for How to get the FxCop custom dictionary to work?Grhm2009-11-25T12:06:39Z2009-11-25T12:06:39Z<p>Further to David Schmitt's answer <a href="http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work/726358#726358">above</a>, you may need to alter/remove the custom dictionary that ships with FxCop from within the FxCop installation folder.</p>
<p>I've just installed FxCop v1.36, and couldn't get the Project specific words in my dictionary to be recognised until I removed the custom dictionary at <code>C:\Program Files\Microsoft FxCop 1.36\CustomDictionary.xml</code>.</p>
<p>Once, I'd moved that to one side, FxCop started using the <code>CustomDictionary.xml</code> in the solution folder.</p>
<p>This does beg the question of how to add common words to a shared custom dictionary and project/solution specific words within other custom dictionaries and actually having FxCop use both. But for now it's working....</p>