Microsoft's free static analysis tool for analyzing .NET managed code assemblies.

learn more… | top users | synonyms

2
votes
1answer
85 views

Why to use ICollection<T> instead of List<T> and if i use ICollection<T>, then how can i use AddRange,Insert and other list methods [duplicate]

I am using FxCop tool for code analysis and it shows an critical errors like "Don't expose generice list" and it suggests that instead of using a list object try to use ICollection. I tried to ...
0
votes
0answers
18 views

fxcop custom rule is not working

I have created the custom rule using Microsoft FxCop 1.36 in visual studio 2010 and I pasted the custom rule dll in the C:\Program Files\Microsoft FxCop 1.36\Rules folder. Then I opened Microsoft ...
1
vote
0answers
47 views

FX COP Could not resolve type reference: System.Windows.Input.ICommand

Having troubles with FXCOP on our buildagent ONLY and only through the command line tool ONLY. I am using the Caliburn.Mirco framework and added a custom trigger so i can use the delete button. this ...
1
vote
1answer
49 views

Can't suppress CA1709 in any way

I want to suppress CA1709: Identifiers should be cased correctly, on public class IDd. For example i want to use IDd as correct word. But i can't. I tried everything at code analysis dictionary: ...
0
votes
1answer
26 views

Has FxCop been removed from the Windows SDK for Windows 7?

I have been searching high and low for the definitive answer as to how to get hold of the latest version of FxCop and despite the release notes saying: 6.3.6 FXCop Setup is Now Located Under the ...
2
votes
1answer
31 views

FxCop Initialization Erroro CA0001

I am attempting to run FxCopCmd 10.0 through Sonar-runner. However, FxCop is returning an error even though it generates an analysis report. Since it returns an error, sonar-runner does not slurp ...
1
vote
1answer
58 views

Is there a way to tell FxCop that a type is supposed to be immutable?

I have a type which contains a collection of constant data. The constants are defined by a standard which is defined outside of my program. The type looks like this: public class IAmImmutable { ...
1
vote
1answer
83 views

FxCop - TFS integration : Need to create TFS bug to the last checked in person if FxCop fails

We are in a specific requirement regarding FxCop integration with TFS2010. The requirement is as follows. - Execute the build.in specific intervals (There is already a method) - Run the FxCop after ...
0
votes
0answers
50 views

FxCop - How to resolve Windows, Version 255.255.255.255?

I am trying to get FxCop 10 to run analysis on a Windows 8 build computer and seem to have run up against a wall. When I run it with /verbose against a dll, I get: Could not resolve reference to ...
1
vote
2answers
92 views

Clicking on FxCop results in Jenkins Violations plugin leads to blank page

I have a Jenkins job where I specify something like the following FxCop command: FxCopCmd.exe"/file:"test.dll" /out:"FxCop_Output.xml" /ignoregeneratedcode ...
1
vote
2answers
37 views

Disable CodeAnalysis for VS2010 solution

I have around 50 projects in a solution and most of the projects (except unittest projects) have enabled RunCodeAnalysis. The problem is that, build is taking a lot of time. Even if I modify a source ...
2
votes
2answers
69 views

FxCop Custom Code analysis: check class reference in another class

I am writing a custom code analysis check wherein I need to check that the Model class in ASP .NET MVC application does not have reference of the controller class. But I am unable to find anything ...
0
votes
2answers
120 views

FxCop indirect reference to System.Core version 2.0.5.0

I've got a project that uses Autofac, and the WebAPI integration We run FxCop over our solution, and on opening autofac, I get the following: The following indirectly-referenced assembly could ...
-1
votes
1answer
97 views

Fix FxCop CA1062 by generating validation for parameter

Turning the Code anlyisis on for a big project is showing a huge amount of CA1062 wanings, which are absolutely right IMO. I would like to handle these automatically without having to go through ...
5
votes
2answers
106 views

Code analysis rule CA1040: Avoid empty interfaces, complains on a non empty interface

I have an interface that declares events interface IMyInterface { event SomeHandler MyEvent1; event SomeHandler MyEvent2; ... } but when I enable the Code analysis rule CA1040: Avoid empty ...
0
votes
1answer
38 views

ExpandoObject causes rule violation CA1502:Avoid excessive complexity

I have code that performs a mail merge type operation, and I am using dynamic/ExpandoObject to assemble the properties. I am doing this instead of building an anonymous class because different methods ...
0
votes
2answers
124 views

Code Analysis rule CA1062 behaviour

I have following extension method for strings: public static bool IsNullOrEmpty(this string target) { return string.IsNullOrEmpty(target); } ... and in the code I use it as follows: public ...
0
votes
0answers
13 views

FXCOP is giving error “Invalid TaskAction passed”

Hello i am integrating my project with FXCop so added below code in proj file -- <Target Name="RunFxCopTarget" DependsOnTargets="BuildSolution" Condition="$(RunFxCop)==true"> <Message ...
2
votes
0answers
119 views

FxCop rule around ensuring a certain method accepting a lambda is called first in a test

Using a custom FXCop rule, I want to ensure that a method is called at the top of each unit test and that all unit test code is part of an Action passed into that method. Essentially I want this: ...
1
vote
1answer
176 views

Stylecop Suppress errors for Reference.cs file

I have just asked a similar question regarding auto generated code from Service References and Xml summary errors. An answer was posted suggesting that I could add the Service Reference into its own ...
3
votes
1answer
99 views

What can go wrong when throwing a reserved exception in C#? [closed]

FxCop issues a violation of rule CA2201 if you throw System.IndexOutOfRangeException in your code (see reference). The rationale for this is that System.IndexOutOfRangeException is "reserved and ...
2
votes
3answers
145 views

How to generate a warning if a specific enum value is used

I am using an enum being exposed by a 3rd party assembly, e.g., public enum APIEnum { Val1, Val2 } . However, a number of these values cause incorrect behavior in my application. I want to ...
0
votes
1answer
90 views

How to ignore Stylecop rule SP0100?

How to suppress Style Cop rule SP0100? Enumeration item name v2007 doesn't conform the specified style: SampleName, Sample_Name. I tried following http://stackoverflow.com/a/3296152/284795 ...
2
votes
0answers
105 views

implement custom code analysis visual studio extension

I Just want to ask if it's possible to turn a Custom Code Analysis into a .VSIX extension? If yes, what method should I be taking? I am planning to create a Visual Studio extension of my custom code ...
0
votes
1answer
133 views

Exclude rules from FXCop via command line

Was using the MSBuild task a while back, and found some documentation about being able to exclude specific rules, e.g. -Microsoft.Design#CA2210. The MSBuild task translates that into ...
0
votes
1answer
180 views

Issues setting up StyleCop and FXCop with Jenkins

I have installed the Jenkins Violations plugin v0.7.11 and I am having an issue getting it to display FXCop and StyleCop violations. In the settings I have entered the recommended XML filename ...
1
vote
0answers
57 views

Parser FxCop Results Xml file in C#

I use VS2010 and Fxcop 10.0 (fxcopcmd.exe) programatically for generate fxcop analysis results (xml file) I would like parser xml file for fxcop analysis results. In java language I've found this: ...
2
votes
2answers
70 views

Generate Code attribute for FX Cop

I'm using SQLMetal to generate my LINQ to SQL DBML file. It creates a ".designer" file as well that has all the generated code. It has a bunch of classes and properties that are being flagged by FX ...
1
vote
1answer
138 views

Treat Warnings as Errors has no effect

In my project's settings in Visual Studio, I have set 'Treat warnings as errors' to 'All'. The Warning level is set to 4. I tested this by deliberately introducing code that violates CA1305, but it ...
0
votes
0answers
49 views

FxCop - Relative path

I have a .fxcop file in my c# project. In this file I am referencing to program files folder as: <AssemblyReferenceDirectories> <Directory>C:/Program Files/Reference ...
0
votes
0answers
108 views

FxCOP issue CA0058 under visual studio 2010 and NET Framework 4.0

I have a solution with different projects. Each project has a .Fxcop file. When I build the solution in release it works ok, but when building solution in debug following error occurs: CA0058 : The ...
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
1answer
72 views

How to silence fx cop warning CS0067?

On a build server, I see some weird message. It doesn't say so, but I think it's from some software called 'fx cop' Warning CS0067: The event ...
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 ...
0
votes
2answers
61 views

TeamCity Send Email FxCop Notification

I currently have FxCop integrated as a build step on one of my TeamCity projects. It runs after the build and outputs errors. It's working great. However what I really want is to have it email me ...
5
votes
2answers
155 views

Warning: Can't find dll

I have a client program written in C# where one of the projects in the solution handles a case which the machine has SQL 2005 installed. I have added the relevant DLLs, but I get that warning: ...
0
votes
1answer
223 views

513 Error Code (exit code) FxCop using C#

I have VS2010, Windows 7 bits, FxCop 10.0 I execute Fxcopcmd.exe using Process.Start, and I get 513 "exitcode" (error code) value. Todd King in below reference says: In this case an exit code of ...
1
vote
0answers
92 views

MSBuild Extension Pack FxCop - Using Ruleset switch

I'm trying to specify a ruleset instead of rules assembly as part of the fxcop msbuild task, but its not currently working. The documentation says it does support this. ...
2
votes
0answers
30 views

Type of method Passed to ThreadStart Delegate using fxcop dll

I am implementing a custom rule dll for FXcop. The rule goes as follows : "One should not use static fields inside a multithreaded method without synchronization" . For this i need to get the type of ...
6
votes
2answers
396 views

Cyclomatic complexity count of 31, where has this come from?

I'm developing an application that pulls data from an Excel file (I don't have access to the actual database) and I've written a method which has as its only function to pull the data from the Excel ...
1
vote
1answer
73 views

How to identify a Method in fxcop

I am trying the create a custom fxcop rule which checks for all the methods in target assembly having their names NOT starting with the CAPITAL letter. I am pretty successful in doing this but there ...
2
votes
2answers
579 views

Migrating custom Code Analysis rules to VS2012

I have written dozens of custom code analysis rules. The rules were developed targeting Visual Studio 2010. As required, the assembly has a reference to version 10.0 of FxCopSdk, Microsoft.Cci, and ...
0
votes
1answer
117 views

changing App_Start to AppStart

I have set up a new MVC 4 web application. I am currently running source code anaylsis against the project and getting the following error: CA1707 Identifiers should not contain underscores The ...
0
votes
1answer
823 views

FxCop installation

I am trying to get latest version of FxCop. I am using Visual Studio 2010 Professional edition which does not include code analysis, so I am trying to set it up using FxCop. At ...
0
votes
2answers
35 views

Suppress Microsoft.Reliability warning on lambda

I've got following piece of code in a singleton-like class: private readonly Lazy<IWindsorContainer> LazyContainer = new Lazy<IWindsorContainer>(() => new ...
0
votes
1answer
69 views

How stringent should I be with Code Analysis compliance in Visual Studio?

After playing with Code Analysis for a small project I am working on, I am wondering just how severe I should be when resolving code to be analytically compliant. I know I can suppress warnings for ...
0
votes
1answer
659 views

Sharing Code Analysis rules and dictionaries

We're moving to Visual Studio Professional 2012, and now have access to Code Analysis. Before, we used FxCop and passed a parameter of SourceControlPath\OurFxCopSharedProject.FxCop. We also added a ...
2
votes
2answers
58 views

Monitor 3rd party assembly usage with Sonar

I have a client with a fairly large (> 150 solutions) code base. They have a list of approved third party assemblies their developers can use, and they would like to use Sonar to help identify ...
0
votes
1answer
53 views

assistance with fxcop

I am at present developing a mvc4 project that comunicates to a set of wcf services. I am setting such up in tfs build for a team of developers. I am very much a newbie to fxcop and code analysis in ...
3
votes
2answers
113 views

Why does FxCop insist on IDisposable for a struct

I have the code similar to the following in one of my projects: internal enum ArtworkType { Undefined = 0, Bmp = 1, Gif = 2, Jpeg = 3, Png = 4 } ...

1 2 3 4 5 10