Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.09 KB

README.md

File metadata and controls

30 lines (22 loc) · 1.09 KB

DependencyGraph

C# Dependency Graph based on Reflection

Features

  • List classes and dependencies in the provided assembly.
  • Can find dependencies for:
    • inheritance (via both classes and interfaces)
    • constructor arguments
    • private/protected/public method arguments
    • private/protected/public static method arguments
    • private/protected/public instance variables
    • private/protected/public static variables
    • temporary variables
  • Fully unit tested and test-driven.

Installation & Usage

  • Go to the release page and download DependencyGraphCLI.zip.
  • Extract DependencyGraphCLI.zip.
  • Open command prompt (cmd) and cd to the extracted directory.
  • Run DependencyGraphCLI.exe -a "<path\to\assembly.dll|exe>".

The tool will print the dependency graph of the provided assembly to the standard output. Feel free to redirect the output to a file at your convenience.

Contributors

Special thanks to TheDudeFromCI.