Spellcheck message lines in .Net projects

I wanted to do a spell check for all message lines used in my project. How can I do this using fxCop v 1.3.6 ?? Or do you recommend any other Microsoft tool (not a third-party tool), as our company does not agree that

Pls help ... Sample code that I'm testing with FxCop v1.3.6

// comment with invvvvls spellsig private void Form1_Load(object sender, EventArgs e) { MessageBox.Show("This is incorret spelling"); } 
+7
source share
2 answers

Try putting your lines in a resource file. I am using FxCop version 10 and I notice that the lines in my resource files are spell-checked.

+1
source

You can use the Visual Studio add-in (from VSCodeGallery). This is not Microsoft, but an integrated tool for VS:

http://visualstudiogallery.msdn.microsoft.com/7c8341f1-ebac-40c8-92c2-476db8d523ce

On the other hand, FxCop> = 1.36 certainly comes with an internal spell check, as indicated here: http://davesbox.com/archive/2008/06/08/fxcop-now-ships-with-the-spell-checker -libraries.aspx . As much as possible, you should be able to enable it using: Project → Options → Spelling and Analysis and the Spelling language drop-down list, but I could not find the drop-down list in FxCop v4.5 RC, since I have not installed version v1. 36.

+3
source

All Articles