Tagged Questions

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

learn more… | top users | synonyms

46
votes
4answers
11k views

Resolving MSB3247 - Found conflicts between different versions of the same dependent assembly

A .NET 3.5 solution ended up with this warning when compiling with msbuild. Sometimes NDepend might help out but in this case it didn't give any further details. Like Bob I ended up having to resort ...
16
votes
5answers
823 views

C#/.NET analysis tool to find race conditions/deadlocks

Is there a tool that analyses .NET code and finds race conditions? I have a bit of code that has a public static property that gets or creates a private static field. It also has a public static ...
16
votes
2answers
802 views

How to start using ndepend?

I recently downloaded ndepend and ran an analysis on an open source project I participate in. I did not now where to look next - a bit of visual and information overload and it turned out I don't ...
15
votes
6answers
848 views

Do you use NDepend?

I've been trying out NDepend, been reading a few blogposts about it and even heard a podcast. I think that NDepend might be a really useful tool, but I still don't see where I would use it. How do ...
9
votes
2answers
561 views

Are there any good/automateable dependency management tools for managing application, database & external resources dependencies?

I would like to build an overview/map of as many of our applications dependencies as possible. Analyzing .NET application dependencies is fairly easy using tools such as NDepend (which I love!). But ...
7
votes
3answers
341 views

How to find code which is only called by tests

Occasionally I am looking at some code, I search for usages of a method (using resharper) and find that it is only called by tests. So it's effectively redundant and I can delete it and the methods ...
7
votes
1answer
75 views

Can I use NDepend to count casts?

I've got some inherited code that has a tendency to pass objects around as interfaces (IFoo, for example) then, at arbitrary places in the code, spontaneously cast them to concrete implementations of ...
6
votes
1answer
244 views

Why does list initialization with lambda causes high cyclomatic complexity?

Initialization of list with lambdas causes high IL cyclomatic complexity: why, and how remove this complexity? For example following code causes the static constructor of the class (which is actually ...
6
votes
3answers
233 views

How to restrict NDepend methods query on type attribute

I'm trying to get NDepend to identify long methods using a modified version of the standard "Methods too big" query. I don't want to report long methods that the developers have little control over, ...
6
votes
7answers
4k views

Do you know any alternative to NDepend for architects?

do you know any software similar to NDepend? I've got it just recently, and found it very useful. It helped me a lot, but for now i don't have a possibility to buy a proffessional version. So, is ...
5
votes
1answer
1k views

What is Abstractness vs. Instability Graph?

I recently used NDepend and it produced a good report on my .net assemblies and related pdbs. The most interesting thing I found in the report was abstractness vs. instability graph. I wanted to ...
5
votes
1answer
166 views

Driving NDepend with NUnit

Is it possible to use NUnit to run CQL queries using NDepend? It would be nice to be able to just include the NDepend dlls in a UnitTests library and write tests like: [Test] public void ...
4
votes
2answers
95 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 ...
4
votes
1answer
131 views

NDepend: How to not display 'tier' assemblies in dependency graph?

I was able to do this in an earlier version of nDepend by going to tools->options and setting which assemblies would be part of the analysis (and ignore the rest). The latest version of the trial ...
4
votes
3answers
977 views

Does any tool similar to NDepend exist for unmanaged C++ code?

I have enjoyed the power of NDepend ( http://www.ndepend.com/ ) when writing C#, but in my C++ projects I have not found a comparable tool. I use Visual Studio 2005, which has a class-view that ...
3
votes
1answer
24 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 ...
3
votes
2answers
189 views

The VS 2010 Ultimate vs 3rd party utilities

From Software worth buying, Open source C# projects that have high code quality? and .NET "must-have" development tools, I found some software tools are multiple recommended such as ...
3
votes
1answer
105 views

Open an NDepend Project With An Automated Team Build?

I am trying to automatically open an NDepend Project when the Solution builds in an automated build in TFS2010. This stems from this previous question. The aforementioned post is where I tried (and ...
3
votes
1answer
184 views

nDepend integration in Visual Studio 2010

This stems from a previous question I asked regarding code metrics. I have been trying out nDepend as a tool to use in running metrics on our team's code. I have to say that so far I am very ...
3
votes
2answers
850 views

Setting up NCover for NUnit in FinalBuilder

Solved: Look at the bottom of this question for the working configuration I am attempting to set up NCover for usage in my FinalBuilder project, for a .NET 4.0 C# project, but my final coverage ...
3
votes
4answers
716 views

Code quality and analysis tools for C#? How do you analyze your code?

I am a big NDepend fan and so I read quite a bit from Patrick Smacchia. I was reading a post of his this morning regarding "Where do developers care for Software Quality" in which he looks at the ...
3
votes
1answer
267 views

NDepend CQL Count Query

I want to query a table of public methods of a specific class and a count of each methods usage in NDepend CQL. Currently query looks like this: SELECT METHODS FROM TYPES ...
2
votes
1answer
42 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 ...
2
votes
1answer
48 views

How can NDepend be instructed to ignore EF classes?

I'm having a little problem with NDepend not ignoring generated code. It's picking up issues around methods with too many parameters on the designer.cs file generated by EF when the entity data model ...
2
votes
1answer
42 views

CQL request composition

Is it possible to compose requests in CQL ? I would like to write something like: SELECT TYPES FROM ASSEMBLIES "myassemblie" WHERE IsUsing SELECT METHODS FROM ASSEMBLIES "myotherassemblie" WHERE ...
2
votes
1answer
89 views

Does NDepend run on Mono/Linux?

I'd like to use NDepend at home for an open source project, but I can't find if it run on linux with mono 2.6.8. Any one have succesfully used it on a mono only machine?
2
votes
2answers
113 views

NDepend - Several .NET assemblies have the name {MyAssembly} but they are different

I've just started using NDepend and am trying to analyse a solution. This warning appears when I add the solution's assemblies and it will not load any assemblies with the warning: Cant' load the ...
2
votes
0answers
98 views

Ndepend CQL to find methods of certain types using particular framework assembly

In order to check if types not derived from certain base classes are using a low-level framework assembly, the following query can be used. SELECT TYPES WHERE IsDirectlyUsing ...
2
votes
2answers
110 views

Finding magic numbers using NDepend

Does anyone know how I could find magic numbers in the source code using the CQL queries in NDepend? This is the same problem as this question, but I don't want to use regex if possible. So I want to ...
2
votes
4answers
362 views

Determine Unused Methods and Properties

I have a self-contained solution (non of the DLLs are used in any other project, so no worrying about Methods being used somewhere else). I'm trying to figure out a way to determine every ...
2
votes
2answers
303 views

Exiting the Zone of Pain - NDepend

I was just running one of my projects through NDepend and the report put my assembly right in the corner of the zone of pain. I was just wondering if it's something that I should be worried about. ...
2
votes
1answer
179 views

NDepend metrics on assemblies

Do you try to keep the Distance from main sequence low for every assembly? What about assemblies that contains only Business Objects definitions? Is it possible to keep them away from Zone of Pain? ...
2
votes
1answer
350 views

Most helpful NDepend CQL queries

A client I work for has begun using NDepend as a replacement for FXCop, and the "architect" has compiled a list of practically unusable CQL queries, which I gather he has taken from advice from the ...
2
votes
2answers
560 views

How do I automatically fail a nant build if NDepend query raises a warning

OK first some background. I am busy automating our build process. We run a mixture of Vs 2005 and VS 2008 both targeting platform 2.0. We use Nant to do our builds using the MSBUILD task to do the ...
1
vote
1answer
31 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
10 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 ...
1
vote
1answer
16 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 ...
1
vote
1answer
27 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
vote
1answer
21 views

How to get a list of types that my class depends on in Ndepend?

Using Ndepend; How can I get a list of all types (types only from the same assembly) that my class is using? If there is any way to do this other than Ndepend, I'm open to suggestions.
1
vote
1answer
39 views

NDepend -Finding dead methods

I have two public methods A & B. I modified CQL to show me methods which are public and dead. If B is only called by A and A is coming as dead method(not called or referenced anywhere in the ...
1
vote
1answer
65 views

Is it possible with nDepend and CQL today to ask for classes directly using classes of a derived type?

Been reading through a lot of Q's and posts and see that subqueries/nested queries/query composition will not be supported until the next version. However I'm not sure if that is what I need, in my ...
1
vote
1answer
53 views

How can associated or integrate nDepends with TFS

Can anyone tell me how can i integrate nDepends in existing project TFS i am using VS2010.? I have found a solution nDepends documentation but i am unable to understand completely. anyone having ...
1
vote
1answer
102 views

Building CQL in NDepend for verifying MVVM patterns

I wanted to verify few design patterns in C# code by static analysis. I want to verify these using NDepend. The application is built with MVVM design style, so typical design patterns that I would ...
1
vote
1answer
46 views

CQL constraint of list of classes to find bases with non-virtual destructors?

Is it possible to use cppdepend (yes C++) to do the equivalent of Make destructors virtual in base classes as Scott Meyers discussed in his very old comparison of C++ analysis tools? I can list ...
1
vote
1answer
49 views

CQL in ndepend and cppdepend to see changes in metrics across revisions

CQL makes it easy to find methods where CodeWasChanged but I also need to compare the metrics - I want to find modified code and see if it has improved or not. I'm evaluating ndepend and cppdepend ...
1
vote
1answer
69 views

Managing multiple solutions with NDepend

Suppose you have two Visual Studio solutions, each of which builds three assemblies - for example: SolutionA: A1.dll, A2.dll, A3.dll. SolutionB: B1.dll, B2.dll, B3.dll. Further, suppose that you ...
1
vote
1answer
119 views

Getting NDepend to recurse through an input directory finding all assemblies/source across multiple projects

I am using a NAnt build script to call NDepend with the required command line arguments. <exec program="NDepend.Console.exe" basedir="${NDependPath}"> <arg line="${NDependProjectFilePath} ...
1
vote
1answer
49 views

NDepend Count, Average, etc.. reporting… aggregates. Possible? clean work arounds?

We have a huge code base, where methods with too many local variables alone returns 226 methods. I don't want this huge table being dumped into the xml output to clutter it up, and I'd like the top 10 ...
1
vote
1answer
66 views

Exposing CQL Result in NDepend

I have some custom CQLs in NDepend Project and I want generate the results of these CQLs using NDepend.Console.exe. When I generate the report, I don't see any result of my custom CQLs in the report. ...
1
vote
1answer
176 views

How do I direct nDepend output into the artifacts folder on CruiseControl.Net?

<cb:define subversionpath="c:\Program Files\Subversion\bin\svn.exe" msbuild4="C:\WINNT\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" ...

1 2