Skip to content

Commit fe65e1f

Browse files
authored
Fix style issues and missing documentation in dotnet package download (#49660)
1 parent 9213649 commit fe65e1f

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

docs/core/tools/dotnet-package-download.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
title: dotnet package download command
3-
description: Download a nuget package.
3+
description: Download a NuGet package.
44
author: Nigusu-Allehu
55
ms.date: 11/06/2025
6+
ai-usage: ai-assisted
67
---
78
# dotnet package download
89

@@ -18,7 +19,7 @@ ms.date: 11/06/2025
1819
dotnet package download [<packages>...]
1920
[--output <path>]
2021
[--configfile <path> ]
21-
[--include-transitive]
22+
[--prerelease]
2223
[--source <package source>]
2324
[--allow-insecure-connections]
2425
[--interactive]
@@ -29,16 +30,16 @@ dotnet package download -h|--help
2930

3031
## Description
3132

32-
`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.
3334
By default, the command downloads only the packages you specify (no transitive dependencies) to the current working directory.
3435

3536
## Arguments
3637

3738
* **`packages`**
3839
One or more package IDs to download.
3940
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]`.
4243

4344
## Options
4445

@@ -68,7 +69,7 @@ By default, the command downloads only the packages you specify (no transitive d
6869

6970
* **`-v --verbosity <level>`**
7071

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]`.
7273

7374
[!INCLUDE [help](../../../includes/cli-help.md)]
7475

0 commit comments

Comments
 (0)