Dependency graph of Visual Studio projects

前端 未结 16 2236
鱼传尺愫
鱼传尺愫 2020-11-28 17:42

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

16条回答
  •  失恋的感觉
    2020-11-28 18:20

    If you're looking for a way that doesn't require any external tools, you can navigate to a project's obj/project.assets.json file. This file is generated during build, and has a hierarchical JSON structure of the dependencies (both project references and nuget packages).

    It's useful for answering questions like "why the hell is this project DLL being pulled into the build directory?"

提交回复
热议问题