1dotnet-tool-run(1) .NET Documentation dotnet-tool-run(1)
2
3
4
6 This article applies to: ✔️ .NET Core 3.1 SDK and later versions
7
9 dotnet-tool-run - Invokes a local tool.
10
12 dotnet tool run <COMMAND NAME>
13
14 dotnet tool run -h|--help
15
17 The dotnet tool run command searches tool manifest files that are in
18 scope for the current directory. When it finds a reference to the
19 specified tool, it runs the tool. For more information, see Invoke a
20 local tool.
21
23 • COMMAND_NAME
24
25 The command name of the tool to run.
26
28 • -?|-h|--help
29
30 Prints out a description of how to use the command.
31
32 Example
33 • dotnet tool run dotnetsay
34
35 Runs the dotnetsay local tool.
36
38 • .NET tools
39
40 • Tutorial: Install and use a .NET local tool using the .NET CLI
41
42
43
44 2022-10-10 dotnet-tool-run(1)