You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dependify is a tool to visualize dependencies in your .NET application. You can start dependify in `serve` mode to visualize dependencies in a browser or use the `CLI` if you prefer the terminal.
|` Dependify.Aspire.Hosting`|[](https://nuget.org/packages/Dependify.Aspire.Hosting)| Aspire support |
You can add `Dependify.Web` as resource to your Aspire project.
37
72
38
73
Add the package to AppHost:
@@ -63,11 +98,10 @@ See the [samples/aspire-project](./samples/aspire-project) for more details.
63
98
64
99
You can use the CLI for the automation or if you prefer the terminal.
65
100
66
-
67
101
```bash
68
102
dependify graph --help
69
103
```
70
-
104
+
71
105
```text
72
106
USAGE:
73
107
dependify graph [OPTIONS] <COMMAND>
@@ -84,19 +118,20 @@ COMMANDS:
84
118
show <path> Shows the dependencies of a project or solution located in the specified path
85
119
```
86
120
121
+
The command `scan` will scan the folder for projects and solutions and retrieve their dependencies. The ouput can be in `tui` or `mermaid` format. The `tui` or terminal user interface is the default output format.
0 commit comments