DEV Community

Cover image for How to ramp up in a new codebase with NDepend
Sahan
Sahan

Posted on • Originally published at sahansera.dev on

How to ramp up in a new codebase with NDepend

Reading code is good. But, visualising code is even better. I recently wrapped up a gig where we had to perform a .NET Core upgrade (from .NET Framework 4.5 to .NET Core 3.1) which also had quite a bit of tech debt. It could be a bit challenging to ramp up quickly in a codebase that is entirely new to you and get the preferred outcomes of it.

In this post, we will look at how we can use static analysis and dependency graphs with NDepend to quickly ramp up and even identify issues in a real project.

Installation

You can download a free trial from here if you haven’t already got NDepend. Once you have downloaded it, there’s nothing there to do in terms of installation. Just extract it to a folder of your choice.

ramping-up-in-new-codebase-with-ndepend--0.png

VisualNDepend.exe is the standalone application and you can install the VS extension with NDepend.VisualStudioExtension.Installer.exe.

ramping-up-in-new-codebase-with-ndepend--1.png

We will be using eShopOnWeb project for this demo.

git clone https://github.com/dotnet-architecture/eShopOnWeb
Enter fullscreen mode Exit fullscreen mode

Once you have cloned the repo, you should have the following folder structure.

ramping-up-in-new-codebase-with-ndepend--2.png

Before we begin, we need to build the application so that NDepend can analyse the assemblies.

dotnet build .\eShopOnWeb.sln
Enter fullscreen mode Exit fullscreen mode

Now we are ready to use NDepend on our solution. You can either use NDepend standalone app or use VS extension.

Analysing the assemblies

If you choose to do a one-off analysis you will get to select which assemblies you would want to analyse. You can select the .sln file of your solution and NDepend will pick up the assemblies.

ramping-up-in-new-codebase-with-ndepend--3.png

Once you have analyzed your solution, you will get the following options.

ramping-up-in-new-codebase-with-ndepend--4.png

The dashboard gives an excellent breakdown of insights like LoC, tech debt, types, quality gates etc.

ramping-up-in-new-codebase-with-ndepend--5.png

This is quite useful since it gives you a birds-eye view of the solution of what you are working with.

Interactive Dependency Graph

The most exciting feature for me was the dependency graph. For our .NET Core upgrade, it was quite easy to understand which projects should be migrated first with NDepend. So, I believe if you are new to our codebase, this is the best option to start with to get a feel for it.

ramping-up-in-new-codebase-with-ndepend--6.png

At a glance, it will give you a nice visualisation of the dependencies of your solution. You can zoom in/out of any dependency in your solution structure. If you have got a big monitor, you are in for a treat! 😊 For any migration effort, it’s necessary to identify which projects depend on which.

💡 This is just a demo of what you can quickly achieve when you make use of dependency graphs in practice. When you are doing an actual migration though, you need to take small steps carefully and focus on the migration with the least amount of code changes. Keep other refactorings once you are through that phase.

Let’s have some fun with the eShopOnWeb project now. Looking closer at the ApplicationCore project, you will find the following (unless they have changed it while at the time you are reading this post)

ramping-up-in-new-codebase-with-ndepend--7.png

Can you spot there’s a weird-looking namespace in there? Ardalis.GuardClauses doesn’t sound like it’s supposed to be there. But let’s have a look in the class.

ramping-up-in-new-codebase-with-ndepend--8.png

If you have a look at that class, it’s, presumably, in a wrong folder and also a different namespace that to other classes we have in that project. If you shift the file to Extensions folder, fix the namespace (in VS) and press F5 in NDepend. This will do another run, and the latest changes will be available. Press Alt+G to quickly go to the dependency graph.

💡 Don’t forget to install the VS Extension that comes with NDepend so that you can quickly dive into code from the dependency graph!

ramping-up-in-new-codebase-with-ndepend--9.png

We found our first issue within a matter of seconds! 👊

Now the file seems to be in the correct place. If you scroll down a little bit in that dependency graph, you would quickly realize that there’s another file called JsonExtensions.cs which happens to be also some extensions but in a namespace that is not related to what it represents.

ramping-up-in-new-codebase-with-ndepend--10.png

If you have a quick look at the folder structure it will tell you a different story,

ramping-up-in-new-codebase-with-ndepend--11.png

We won’t refactor this now, but you get the idea. This is just a simple example but you would find these types of issues even in code that’s in production, that could sometimes give you a lot of headaches. But the point I wanted to make was that by using static analysis and dependency graphs you could get a better understanding of what’s going on in your code rather than merely going through folders and files.

💡 If you are not sure of what those arrows mean, you can use the Context-Sensitive Help which can be enabled by clicking on the ? mark.

ramping-up-in-new-codebase-with-ndepend--12.png

You can also do other cool stuff like finding out who are the callers, callees for a given type. You can even write LINQ queries and drill down further.

ramping-up-in-new-codebase-with-ndepend--13.png

How does it stack up against Visual Studio 2019’s tools?

I have used the inbuilt dependency graph that comes with VS 2019 for some time now and it’s good for basic stuff. Since I’m using VS Professional edition, I can’t explain its full capabilities. You can have a look here to see which editions support dependency diagrams.

Here’s a screenshot from VS’s dependency diagram feature.

ramping-up-in-new-codebase-with-ndepend--14.png

You can dive into your projects, but you will soon end up with a huge mess of classes, and you will find yourself turning the level of detail up/down and settings rather than going through the code. When compared with NDepend, I found that NDepend provides an intuitive user experience with excellent breadth and depth into your solution.

Conclusion

As we have seen in this post, it is quite beneficial to have an overall view of the solution you are dealing with by visualising it. This post only scratches the surface of what NDepend is capable of and there are many other features of it that I haven’t covered.

Let me know in the comments below what other tools that you use to quickly ramp up on a codebase. If you want to learn more, you can checkout the links in the below section. Until then 👋

References

  1. https://www.ndepend.com/docs/ramp-up-in-a-new-code-base
  2. https://www.ndepend.com/docs/getting-started-with-ndepend
  3. https://www.ndepend.com/docs/visual-studio-dependency-graph

Top comments (0)