且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Visual Studio 项目的依赖图

更新时间:2023-11-28 22:42:22

您是否尝试过 NDepend?它将向您显示依赖项,您还可以分析您的类和方法的可用性.

他们的网站:

以下是整个 .NET Core 3 类库(176 个程序集)的样子.

免责声明:我在 NDepend 工作

I'm currently migrating a big solution (~70 projects) from VS 2005 + .NET 2.0 to VS 2008 + .NET 3.5. Currently I have VS 2008 + .NET 2.0.

The problem is that I need to move projects one by one to new .NET framework ensuring that no .NET 2.0 project references .NET 3.5 project. Is there any tool that would give me a nice graph of project dependencies?

Have you tried NDepend? It'll shows you the dependencies and you can also analyze the usability of your classes and methods.

Their website:

http://ndepend.com


To complete the @Eriawan answer in April 2020 NDepend version 2020.1 has been released with Dependency Graph completely rebuilt. It now scales on large solutions made of hundreds of projects and offers many navigation facilities.

Here is what it looks like on the NopCommerce OSS project.

Here is what it looks like on the entire .NET Core 3 classes library (176 assemblies).

Disclaimer: I work at NDepend