Can Visual Studio/Tools show me the Circular Dependency Graph when I add a reference to a project?

c#, visual-studio-2010

Solution

This is an old question, but since it doesn't have an accepted answer...

In at least VS 2015 Enterprise, you can right click on your solution in the Solution Explorer and select `Show Project Dependency Diagram`. This will load a diagram of the dependencies within your solution. Very useful for large solutions.

Problem

I am working with a solutions having large number of projects. I am trying to refactor some peices into Common libraries. However, while adding some project reference, I get the circular dependency error. I have tried to remove the unused references from my VS Solution but circular dependency still exists. Are you aware of any VS extensions or external tools that can help me know the circular dependency. I have Resharper too but I am not aware if the Code Cleanup can help me for this issue.

Original source

Related problems