The suppressmessage tag has no wiki summary.
0
votes
0answers
28 views
Why do some SuppressMessage attributes remain even when CODE_ANALYSIS compilation symbol is set?
I was looking through the code for Entity Framework.
I noticed that the production dll for entity framework 5 has some SuppressMessage attributes in it still
Even though the project is obviously ...
1
vote
1answer
43 views
Filtering rules based on functionality
I am pretty sure what I am about to ask is not possible, but I am hoping experts on Code Analysis may be able to suggest a workaround.
I am trying to find a way to exclude Code Analysis warning in ...
1
vote
0answers
21 views
Exclude namespace from FxCop code analysis [duplicate]
Possible Duplicate:
StyleCop/FxCop 10 - How do you properly suppress a message only on a namespace level?
How do I suppress FxCop rule 'DoNotCatchGeneralExceptionTypes' with ...
7
votes
3answers
238 views
Suppress install outputs in R
This is really starting to bug me...I have tried a few methods and none seem to work
I am running an install from a function which generates a lot of unnecessary messages that I would like to ...
3
votes
2answers
149 views
Suppress displaying content of variables in F# interactive [duplicate]
Possible Duplicate:
F# - Keep F# interactive from posting output
Is there any way how to suppress displaying content of variables in F# interactive?
Why do I want it? This is what is ...
2
votes
2answers
465 views
SuppressMessage for a whole Namespace
I use underscores for my Test Methods for a better readability and I want to suppress FxCop errors/warnings for the whole test namespace.
How could I achieve this?
I played with ...
1
vote
3answers
211 views
SP2101: Method body must not contain more than 120 code lines - How can I suppress this?
I have a method that goes through loads of file types like so:
case ".jpg":
res = "image/jpeg";
break;
case ".pdf":
res = "application/pdf";
break;
case ".doc":
res = ...
2
votes
1answer
414 views
StyleCop SP0100 error for Application_Start in Global.asax
Style cop will try to force you to take the underscore out of Application_Start in the Global.asax file in an mvc web application:
SP0100: Method (general) name Application_Start doesn't conform ...
5
votes
4answers
419 views
Can I use SuppressMessage on a framework method?
I would like to implement the following suggestion from CodeContracts:
CodeContracts: MyModule: Method MyModule.MyClass.MyMethod:
To mask *all* warnings issued like the precondition add the ...
4
votes
2answers
2k views
VS2010 code analysis. Suppress message CA1051:DoNotDeclareVisibleInstanceFields for all class members
I have a class like this one:
public class Foo
{
public readonly int A = 1;
public readonly int B = 2;
}
When I run VS2010 built in Code Analysis tool, I get 2 identical warnings:
that ...
4
votes
3answers
4k views
StyleCop/FxCop 10 - How do you properly suppress a message only on a namespace level?
FxCop 10 is complaining about the following:
using XYZ.Blah; //CA1709 - "XYZ"
using Xyz.Blah; //No complaint.
using XylophoneSuperDuperLongFullName.Blah; //I don't want to have a long full name for ...
6
votes
3answers
393 views
How do I suppress App Engine logging while running unit tests?
I'm using gaetestbed in my GAE app, and it's working very well. However, the useful statements that nose prints when your test is incorrect is being washed away by App Engine's logging:
root: Level ...
0
votes
1answer
141 views
Cannot suppress CA1903:UseOnlyApiFromTargetedFramework
FxCop is telling me the following:
"Assembly
'ILRetail.eBusiness.Common.WebUtility.dll'
has a reference to assembly
'System.Web.Routing, Version=3.5.0.0,
Culture=neutral,
...
7
votes
1answer
2k views
How can I get FxCop to suppress warnings for a whole type?
how can I do suppress FxCop warnings for a whole type?
namespace ConsoleApplication1
{
public static class Serializer<T>
{
public static string Serialize(T obj)
{
...
1
vote
2answers
894 views
VS2010 / Code Analysis: Turn off a rule for a project without custom ruleset
...any change?
The scenario is this:
For our company we develop a standard how code should look.
This will be the MS full rule set as it looks now.
For some specific projects we may want to turn ...
0
votes
1answer
285 views
Preventing multiple reporting of the same rule violation in FxCop — What is Id?
FxCop is currently reporting the same rule violation for a particular method -- it has two out parameters, because I want to return two values to the caller without creating a struct for it. I wonder ...