I\'m trying to develop a custom rule for fxcop. I\'ve this code : namespace TestCustomRuleFxCop { public class DoTheRightThingRule : BaseIntrospectionRule
I\'m having problems getting the FxCop command line to work when I specify paths with spaces in them. Yes, I use the quotes properly.
I would like to test my custom fxrules. I\'ve seen this post : http://weblogs.asp.net/rosherove/archive/2007/02/24/writing-real-unit-tests-for-your-custom-fxcop-rules.aspx
Is there anyway to configure the code analysis rules in Visual Studio Team System to match those in an FxCop configuration file and keep them in sync automatically?
I am interested in setting up FxCop to run on each of our VS .csproj files in our developing environment by calling it as a target in the .csproj file itself without creating a separate MSBuild file f
I have a property Foo on a class Bar: public int Foo { get { return GetFoo(); } set { SetFoo(value); } } Both GetFoo and SetFoo are decorated with: