The suppressmessage tag has no wiki summary.
6
votes
3answers
221 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 ...
5
votes
1answer
760 views
SuppressMessage scope=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)
{
...
4
votes
3answers
152 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 ...
3
votes
2answers
334 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 ...
1
vote
1answer
52 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 ...
1
vote
3answers
647 views
C#: 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 ...
1
vote
2answers
696 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
0answers
24 views
How to suppress Messages in FxCop
I am currently working on a project that integrates a website with Microsoft Dynamics AX 2012. Right now we are using FxCop 10 to review our code so that we can improve it and help our status as a ...
0
votes
1answer
96 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,
...
0
votes
1answer
173 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 ...