1dotnet tool list command(1)        .NET Core       dotnet tool list command(1)
2
3
4

dotnet tool list

NAME

7       dotnet tool list - Lists all .NET Core Global Tools currently installed
8       in the default directory on your machine or in the specified path.
9

SYNOPSIS

11              dotnet tool list <-g|--global>
12              dotnet tool list <--tool-path>
13              dotnet tool list <-h|--help>
14

DESCRIPTION

16       The dotnet tool list command provides a way for you to  list  all  .NET
17       Core  Global  Tools  installed  user-wide on your machine (current user
18       profile) or in the specified path.  The command lists the package name,
19       version  installed,  and the Global Tool command.  To use the list com‐
20       mand, you either have to specify that you want  to  see  all  user-wide
21       tools  using  the  --global  option  or specify a custom path using the
22       --tool-path option.
23

OPTIONS

25       -g|--global
26
27       Lists user-wide Global Tools.  Can’t be combined with  the  --tool-path
28       option.  If you don’t specify this option, you must specify the --tool-
29       path option.
30
31       -h|--help
32
33       Prints out a short help for the command.
34
35       --tool-path <PATH>
36
37       Specifies a custom location where to find Global Tools.   PATH  can  be
38       absolute  or relative.  Can’t be combined with the --global option.  If
39       you don’t specify this option, you must specify the --global option.
40

EXAMPLES

42       Lists all Global Tools installed user-wide on your machine (current us‐
43       er profile):
44
45       dotnet tool list -g
46
47       Lists the Global Tools from a specific Windows folder:
48
49       dotnet tool list --tool-path c:\global-tools
50
51       Lists the Global Tools from a specific Linux/macOS folder:
52
53       dotnet tool list --tool-path ~/bin
54
55   See also
56       · .NET Core Global Tools
57
58
59
60                                                   dotnet tool list command(1)
Impressum