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
Copy file name to clipboardExpand all lines: docs/core/whats-new/dotnet-10/sdk.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,8 +32,8 @@ These new tools work much like normal published applications, so any publishing
32
32
You can now use the `dotnet tool exec` command to execute a .NET tool without installing it globally or locally. This is especially valuable for CI/CD or ephemeral usage.
Tool package dotnetsay @1.0.0 will be downloaded from source<source>.
37
37
Proceed? [y/n] (y): y
38
38
_ _ _ _ __ __ _ _ _
39
39
|||| ___ |||| ___ \ \ / / ___ _ __ || __||||
@@ -43,7 +43,7 @@ Proceed? [y/n] (y): y
43
43
|/
44
44
```
45
45
46
-
This downloads and runs the specified tool package in one command. By default, users are prompted to confirm the download if the tool doesn't already exist locally. The latest version of the chosen tool package is used unless an explicit version is specified (for example, `toolsay@0.1.0`).
46
+
This downloads and runs the specified tool package in one command. By default, users are prompted to confirm the download if the tool doesn't already exist locally. The latest version of the chosen tool package is used unless an explicit version is specified (for example, `dotnetsay @0.1.0`).
47
47
48
48
One-shot tool execution works seamlessly with local tool manifests. If you run a tool from a location containing a `.config/dotnet-tools.json` nearby, the version of the tool in that configuration will be used instead of the latest version available.
49
49
@@ -52,7 +52,7 @@ One-shot tool execution works seamlessly with local tool manifests. If you run a
52
52
The `dnx` script provides a streamlined way to execute tools. It forwards all arguments to the `dotnet` CLI for processing, making tool usage as simple as possible:
53
53
54
54
```bash
55
-
dnx toolsay"Hello, World!"
55
+
dnx dotnetsay "Hello, World!"
56
56
```
57
57
58
58
The actual implementation of the `dnx`command is in the `dotnet` CLI itself, allowing its behavior to evolve over time.
0 commit comments