0
votes
1answer
23 views
fxcop custom rules - Inspecting source code to look for new keyword
Hi all,
I would like to avoid instanciating certain class with new, and force to use the factory class.
But I don't understand how to do that.
Can someone show me a little sampl …
0
votes
1answer
28 views
Unit testing fxcop custom rules
Hi all,
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 …
0
votes
1answer
17 views
Can’t see my custom rules with fxcop
Hi all,
I'm trying to develop a custom rule for fxcop.
I've this code :
namespace TestCustomRuleFxCop
{
public class DoTheRightThingRule : BaseIntrospectionRule
{
…
0
votes
1answer
23 views
How to exclude an FxCop in source when item is auto-generated?
For example:
Public Event CurrentChanged As EventHandler(Of CurrentChangedEventArgs(Of T))
Shows the message "Do not nest generic types in member signatures." on CurrentChangedE …
0
votes
1answer
32 views
FxCop command line and paths with spaces
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.
M:\build\IOService\src>"c:\Program Files\Mi …
0
votes
1answer
17 views
Configuring Team System Code Analysis via a FxCop rules file
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?
Not all the de …
0
votes
2answers
29 views
Running FxCop directly through VS project file
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 sep …
0
votes
0answers
30 views
FxCop in TFSBuild.Proj?
I downloaded the latest MSBUild Community Tasks stuff, installed it on my Visual Studio 2008 XP box, edited the tfsbuild.proj file. Intent is to run a custom FxCop setup. Right now …
0
votes
1answer
91 views
How do I appease FxCop when a property getter/setter needs LinkDemand?
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 …
1
vote
0answers
34 views
How to specify CodeAnalysisRules in MSBuild via commandline
I want to be able to specify the Code AnalysisRules in commandline MSBuild (for Code Analysis / FXCOP).
The project file would have something like this in it:
<CodeAnalysisRule …
1
vote
2answers
211 views
StyleCop and FxCop rules exclude each other
I'm using StyleCop and FxCop tools to improve my code but I came to a place where there are two rules, one in StyleCop and one in FxCop that exclude each other. If I fix my code to …
3
votes
5answers
189 views
Why is DB an acronym and not abbreviation?
According to the .NET framework design guidelines, they say DB is an acronym and cased as such. But I thought it was an abbreviation of database?
1
vote
2answers
69 views
Stylecop autofixing tool - is there one?
Hi,
Is there a tool that can automatically fix stylecop and fxcop rules, rather than manually fixing 1000s of warning and errors?
There must be one, it is such a good business op …
1
vote
1answer
75 views
Should FxCop ‘Specify IFormat Provider’ catch Int32.TryParse violations?
The FxCop Globalization Rule, 'Specify IFormat Provider', does not catch Int32.TryParse violations for me. Is this a bug, or am I doing something wrong?
1
vote
4answers
149 views
FxCop taking issue with my use of format strings in resources with NON-Team System Visual Studio
I ran FxCop on one of the projects that I am working on and I got a whole slew of warnings that look like the following:
CA1703 : Microsoft.Naming : In
resource
'MyProject. …
