1dotnet list reference command(1) .NET Core dotnet list reference command(1)
2
3
4
6 This topic applies to: ✓ .NET Core 1.x SDK and later versions
7
9 dotnet list reference - Lists project-to-project references.
10
12 dotnet list [<PROJECT>|<SOLUTION>] reference [-h|--help]
13
15 The dotnet list reference command provides a convenient option to list
16 project references for a given project or solution.
17
18 Arguments
19 · PROJECT | SOLUTION
20
21 Specifies the project or solution file to use for listing references.
22 If not specified, the command searches the current directory for a
23 project file.
24
26 · -h|--help
27
28 Prints out a short help for the command.
29
31 · List the project references for the specified project:
32
33 dotnet list app/app.csproj reference
34
35 · List the project references for the project in the current directory:
36
37 dotnet list reference
38
39
40
41 dotnet list reference command(1)