Really poor man's NDepend, full of bugs -- and excuse to play with the Mono.Cecil library. It provides a simple CLI to generate component dependency graphs.
- .NET 6 SDK
- Graphviz (
dotcommand) =>apt install graphviz - Firefox (or an alternative svg viewer)
- Note: working only on Linux for now
./pack.sh
./install.sh # Install as a global .NET Tool.
git clone git@github.com:DapperLib/Dapper.git
dotnet build ./Dapper/Dapper --self-contained --use-current-runtime --output ./dapper-build
cd dapper-build
depanalyzr types graph -a Dapper -f svg > dependencies.svg
firefox dependencies.svg