NDepend is a static analysis tool for .NET managed code.

learn more… | top users | synonyms

1
vote
1answer
8 views

Comparing two dotCover coverage reports to find intersection?

I've got a bunch of C# code that's covered by both unit tests and system tests. I'd like to find those parts of the code that are covered by both, by only the unit tests and by only the system tests. ...
1
vote
0answers
11 views

Using NDepend, how can we removed Cycle Dependencies generated by the compiler due to Tasks (TPL) from the Dependency Matrix?

Using NDepend, how can we removed Cycle Dependencies generated by the compiler due to Tasks (TPL) from the Dependency Matrix. If we cannot remove them, then how can we easily differentiate them from ...
1
vote
1answer
15 views

How do you query .Net source for methods containing a string using NDepend?

I would like to find out all classes that have an inline SQL Statement in them. How do you write an NDepend CQL query that scans the method body looking for the use of say "Select"? Is it possible? ...
0
votes
0answers
6 views

Checking for a specific string inside an attribute

I want to display all the methods that have the Obsolete tag. This one I can do. However we use a string to define in which release the method was obsoleted. [Obsolete("2013.1")] is it possible to ...
3
votes
1answer
21 views

How do you display the relationships that connect ClassA to ClassX using NDepend?

BACKGROUND When driving through an unknown city, it is often preferable to have a map that can help guide you to your destination. Similarly, when looking at legacy code for the first time it is ...
2
votes
0answers
67 views

Why doesn't NDepend produce a stable LOC count?

I am using the NDepend 4.1 API to count the lines of code in a Visual Studio 2010 solution that has a few projects, which are all targeting the .NET Framework 4. Here's my code: var servicesProvider ...
1
vote
0answers
20 views

Identify an assembly's target runtime using NDepend

Can someone help me to write a CQL query for NDepend 3.8 to get all assemblies that are built against a specific Dot .NET runtime (i.e. 4.0.x vs 2.0.x) Thanks!
1
vote
1answer
173 views

Generating a diff report using NDepend during build

We are using TeamCity for continuous integration, our source control is Git, and we have 1 major repository that contains multiple .sln files (around 10). All in all, this repository has about ~ 100 ...
1
vote
1answer
71 views

What are some good static code analysis rules for an ASP.NET MVC Application? (NDepend) [closed]

I recently came across this posting where Darin Dimitrov suggested that you never refer to HttpContext.Current in your ASP.NET MVC application. We have NDepend, a tool for doing static code analysis, ...
1
vote
1answer
26 views

Query that counts new-operators

I am trying to create another custom query with NDepend, but cannot figure it out. Here's in pseudocode what I'd like to query: var list foreach type t int newCount = 0 foreach type u in ...
1
vote
1answer
42 views

query to detect ISP violations

I am trying to create a special query with NDepend, but cannot figure it out. Here's what I'd like to query in a more procedural pseudocode: var list foreach type t foreach i = t.attribute that ...
1
vote
1answer
64 views

Does NDepend has all the FX Cop rules

We are trying to analyze a product which has more than 5 million lines of code. Since its very large surface area to be covered we want to utilize the automated tool for the same. Ndepend seems to ...
1
vote
1answer
44 views

NDepend: Get average LOC per method

Let's say I a have specific method set in my solution. How can i get an average number of code lines per method in the method set? Those numbers are usually shown in the statistic section of each ...
3
votes
1answer
84 views

Ndepend find actual number of method usages

Let's say I have method A.M1. It is called in B.M2 2 times and in B.M3 3 times. I need to find all number of usages (like Resharper does through find usages interface). So the sum for method calls ...
0
votes
1answer
27 views

NDepend detect properties with can be automatic

We have old code where people have written properties against custom private variables which could be turned into automatic properties (public Foo { get; set; }). How can i detect this?
1
vote
1answer
35 views

How to make Ndepend console update FrameworkAssemblies automatically?

When loading an assembly in Ndepend, it's dependencies (called FrameworkAssemblies in the xml project file) are automatically found and displayed. But when using Ndepend in console mode, the ...
1
vote
1answer
58 views

Find stored procedure dependencies using NDepend

I am maintaining a large code base which makes use of hundreds of stored procedures in SQL Server. To remove unused procedures we need to find those which are still in use. I have written a small bit ...
1
vote
1answer
99 views

nDepend querying direct indirect methods for all methods in an assembly

I am trying to retrieve all direct indirect method calls for all methods in an assembly using the CQL provided by nDepend. Issue is I am not able to iterate through all methods inside a assembly to ...
0
votes
1answer
76 views

How do i get dependendencies between assemblies programatically by NDepend APIs

I want create an analyzer tool for extracting dependency matrix like the matrix in Visual NDepend. How do i get a list of dependencies that exist between two assemblies in a solution?
2
votes
2answers
100 views

Finding code only used in special classes via NDepend

I am trying to get rid of dead code in our codebase using NDepend. Since we are using dependency injection I want to find interfaces (and the implementations) only used in classes that deriving from ...
1
vote
1answer
70 views

ndepend; get method's arguments

How can I, using CQLINQ, get collection of input arguments for current method? There is any collection like "Arguments" or "Parameters" only "NbParamenter" which is not suitable for my purposes.
1
vote
0answers
80 views

Displaying Images in CruiseControl.NET dashboard

I am trying to display the results of running NDepend on CruiseControl.NET. This includes images such as VisualNDepend , Abstractness vs Instability etc. I am however not able to display these results ...
2
votes
1answer
78 views

Evaluation issue with NDepend in CruiseControl.NET

I am trying to integrate NDepend with CruiseControl.NET. However, I get the following build error when I try to build any project: "ERROR: Evaluation issue: Your evaluation period hasn't been ...
0
votes
1answer
71 views

How to select properties with specific attribute using Ndepend

I have properties with attribute [Audit] like this [Audit] public string WorkPhone { get { return workPhone; } set { workPhone = value; } } I need to select all such properties. But ...
2
votes
1answer
54 views

How do I retrieve all attributes of a .NET method using NDepend?

I would like to retrieve (using NDepend) a list of all attributes of a given type that are declared on a method. Something like warnif count > 0 from m in JustMyCode.Methods where ...
1
vote
1answer
76 views

ndepend, .net assemblies enabled

In tools -> options -> .NET Assemblies Enabled, it is possible to temporarily disable framework assemblies such as mscorlib and system. Is there anyway to do this on a per project basis such that the ...
1
vote
1answer
34 views

See the effects of a change in a shared assembly on an upstream application

I've got a group of WCF services that share several assemblies. When one of these assemblies are changed, I'd like to know what the impact is for any of the services that reference them. For example, ...
1
vote
1answer
45 views

NDepend - how to run a report on number of methods having and not having an attribute

I would like to run a report on how many methods in a particular assembly and its sub-assemblies have and do not have certain attribute. Can you write to me a sample code for this? What are the ...
1
vote
1answer
32 views

NDepend - how to extract comments from code?

Is it possible to somehow use CqLinq to extract for each method its comments header? i.e. ....
1
vote
1answer
68 views

View External Dependecy graph in NDepend

NDepend has a nice feature that draws an internal dependency graph. That is which methods within a dll call each other. We would like a diagram like this that showed how methods were called across ...
4
votes
3answers
139 views

C# - How do I check for missing scope.Complete() statements?

Programmers on my team sometimes open a transaction and forget to include the scope.Complete() statement (see code block below). Any ideas on ways to either (1) search our solution for missing ...
2
votes
1answer
235 views

Find all uses of a method (including via interface) using NDepend

Using NDepend, how can I find all, direct and indirect, uses of a specific method or property? In particular, I need to find usages that occur via an interface somewhere along the use path. Thanks! ...
3
votes
1answer
53 views

Finding “Dead” assemblies with NDepend

I am in the process of evaluating the NDepend tool for a client of mine, and was wondering if anyone could provide assistance with the following query: // <Name>Potentially dead ...
2
votes
1answer
60 views

How does NDepend count the parameters number for delegates?

We set some quality contraint on our code, using NDEPEND CQL request: WARN IF Count > 0 IN SELECT TOP 10 METHODS WHERE NbParameters > 6 When defining a delegate with 5 arguments, for example: ...
2
votes
1answer
165 views

How do I import a coverage report from dotcover to ndepend using teamcity?

We use teamcity for Builds Code coverage (using the built in dotCover) Code analysis (using NDepend) This works great separately. But I cant figure out a slick way to get the coverage report ...
1
vote
1answer
56 views

NDepend CQL queries returning N/A for LOC

Using the the following CQL query: SELECT NAMESPACES WHERE NameLike "Test$" ORDER BY NbLinesOfCode DESC I am getting some results that show "N/A" instead of a number for NbLinesOfCode. Anyone ...
2
votes
2answers
134 views

Does it make sense to make the unit test class static?

I've been using NDepend on my codebase and while my actual code seems to pass with flying colors, my unit test code could use a lot of work. One of the suggestions NDepend made was converting many of ...
2
votes
1answer
331 views

CppDepend vs NDepend

Both CppDepend and NDepend are developed by the same company and seem to be based on the same codebase and share some features. I haven't found a side by side comparison site yet. I work on several ...
1
vote
2answers
149 views

Detect Asp.Net Pages referencing other Pages (using NDepend? FXCop?)

I need to find all the classes derived from "System.Web.UI.Page" which reference another class derived from Page ... and everything I try in NDepend gives me either nothing, or every page. We ...
3
votes
1answer
200 views

Seeing Trends in Code Metrics with NDepend

I have a version of NDepend for build servers and have automated the NDepend report generation. So, every night the build does its thing and NDepend reports/XML are generated. What I now want to do ...
3
votes
1answer
42 views

Detached/attached NDepend windows in Visual Studio not remembering where they should be

NDepend is a great tool, but I'm having problems with the various windows opened by NDepend in Visual Studio 2010. The don't seem to remember where I stick/attach them. I want the Error List and Query ...
3
votes
1answer
191 views

Solution-wide namespace dependency graph in NDepend

NDepend seems to be a great tool for code analysis, especially for dependency graph visualization, so we bought a copy. However, the one thing I really need most seems not to be possible: I need a ...
1
vote
1answer
115 views

NDepend rule for “Dispose objects before losing scope”

I'm evaluating NDepend as a part of an effort to enforce code quality and correct framework usage, and I am looking for a way to write the equivalent of CA2000: Dispose objects before losing scope. ...
2
votes
1answer
136 views

In Ndepend dependency matrix, how can I hide some row assemblies?

I'd like to hide some of the row assemblies in my dependency matrix so that I can spot quickly the dependencies between assemblies of my project and a subset of 3rd party assemblies.
1
vote
1answer
105 views

Can I find number of methods without number of getters via CQL?

I am using ndepend to find my code problems. And right now I found that there are too much false positives mistakes. For example, I have a class that is not complex at all, but it does has many ...
2
votes
1answer
93 views

Trying to find all methods that don't have a direct dependency on Microsoft.SharePoint.* or System.Web.UI.*

I'm trying to write a CQL query in Visual NDepend to find all types and methods that don't directly depend on any type from a list of namespaces. The Query I've built so far is this one: SELECT ...
1
vote
1answer
41 views

Can I find which CQL rules are violated by a class

I am trying to use NDepend in code review process. The one thing I want to solve is to check if newly created classes are valid from the point of CQL rules. I have plenty of legacy code and there ...
0
votes
0answers
57 views

nDepend - The assembly {assembly name} is not in sync with corresponding coverage data

When importing a VSTS coverage data file to a NDepend project I'm getting an error message "The assembly {assembly name} is not in sync with corresponding coverage data.". This project analyzes 3 ...
8
votes
2answers
529 views

Is it possible to exclude entire namespaces from NDepend analysis?

I have a setup where Visual Studio 2010 runs test coverage analysis and it's output is absorbed by NDepend during an integration build. A few assemblies contain generated code that needs to be ignored ...
1
vote
1answer
98 views

CA1008: Enums should have zero value convert to CQL(Code Query Language)

I'm trying to CQL transforms all Code Analysis for Managed Code Warnings from msdn for use in NDepend. The CA1008 which says that enumerations should have a value equal to zero, is giving me problems. ...

1 2 3