Developer(s) NDepend | Operating system Website ndepend.com | |
![]() | ||
Stable release 2017.1.0 / January 20, 2017; 57 days ago (2017-01-20) License Commercial, Proprietary |
NDepend is a static analysis tool for .NET managed code. The tool supports a large number of code metrics, allowing to visualize dependencies using directed graphs and dependency matrix. The tool also performs code base snapshots comparisons, and validation of architectural and quality rules. User-defined rules can be written using LINQ queries. This feature is named CQLinq. The tool also comes with a large number of predefined CQLinq code rules. Code rules can be checked automatically in Visual Studio or during continuous integration.
Contents
Features
The main features of NDepend are:
New features in v2017.1
New features since V6.0
Code rules through LINQ queries (CQLinq)
All recent versions of the tool (after V4) proposes live code queries and code rules through LINQ queries. This is one of the main innovations of NDepend. For example:
- Base class should not use derivatives:
// <Name>Base class should not use derivatives</Name>warnif count > 0 from baseClass in JustMyCode.Typeswhere baseClass.IsClass && baseClass.NbChildren > 0 // <-- for optimization!let derivedClassesUsed = baseClass.DerivedTypes.UsedBy(baseClass)where derivedClassesUsed.Count() > 0select new { baseClass, derivedClassesUsed }- Avoid making complex methods even more complex (source code cyclomatic complexity):
// <Name>Avoid making complex methods even more complex (source code cyclomatic complexity)</Name>warnif count > 0 from m in JustMyCode.Methods where !m.IsAbstract && m.IsPresentInBothBuilds() && m.CodeWasChanged()let oldCC = m.OlderVersion().CyclomaticComplexitywhere oldCC > 6 && m.CyclomaticComplexity > oldCC select new { m, oldCC, newCC = m.CyclomaticComplexity, oldLoc = m.OlderVersion().NbLinesOfCode, newLoc = m.NbLinesOfCode,}Additionally, the tool proposes a live CQLinq query editor with code completion and embedded documentation.