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
`dotnet package download`donwloads NuGet packages to a local directory. It **does not** add or update `PackageReference` entries in project files and **does not** build or restore a project.
33
+
`dotnet package download`downloads NuGet packages to a local directory. It **does not** add or update `PackageReference` entries in project files and **does not** build or restore a project.
33
34
By default, the command downloads only the packages you specify (no transitive dependencies) to the current working directory.
34
35
35
36
## Arguments
36
37
37
38
***`packages`**
38
39
One or more package IDs to download.
39
40
Each package can optionally include a version with `@`.
40
-
If a package version is not specified the latest version of the package is downloaded.
41
-
For example, dotnet package update Contoso.Utilities or dotnet package update[email protected].
41
+
If a package version isn't specified, the latest version of the package is downloaded.
42
+
For example, `dotnet package download Contoso.Utilities` or `dotnet package download[email protected]`.
42
43
43
44
## Options
44
45
@@ -68,7 +69,7 @@ By default, the command downloads only the packages you specify (no transitive d
68
69
69
70
***`-v --verbosity <level>`**
70
71
71
-
Set the verbosity level of the command Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic].
72
+
Set the verbosity level of the command. Allowed values are `q[uiet]`, `m[inimal]`, `n[ormal]`, `d[etailed]`, and `diag[nostic]`.
0 commit comments