1dotnet list reference command(1) .NET Core dotnet list reference command(1)
2
3
4
7 dotnet list reference - Lists project-to-project references.
8
10 dotnet list [<PROJECT>] reference [-h|--help]
11
13 The dotnet list reference command provides a convenient option to list
14 project references for a given project or solution.
15
16 Arguments
17 · PROJECT
18
19 Specifies the project file to use for listing references. If not
20 specified, the command searches the current directory for a project
21 file.
22
24 · -h|--help
25
26 Prints out a short help for the command.
27
29 · List the project references for the specified project:
30
31 dotnet list app/app.csproj reference
32
33 · List the project references for the project in the current directory:
34
35 dotnet list reference
36
37
38
39 dotnet list reference command(1)