Skip to content

Commit 2eb4304

Browse files
authored
Merge pull request NuGet#1484 from NuGet/mikejo-updates
SEO edits. Nothing here that needs review.
2 parents b8897e8 + de25fbf commit 2eb4304

6 files changed

+21
-11
lines changed

docs/consume-packages/Reinstalling-and-Updating-Packages.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ Updating and reinstalling packages is accomplished as follows:
1919
| Package Manager UI | On the **Updates** tab, select one or more packages and select **Update** | On the **Installed** tab, select a package, record its name, then select **Uninstall**. Switch to the **Browse** tab, search for the package name, select it, then select **Install**). |
2020
| nuget.exe CLI | `nuget update` command | For all packages, delete the package folder, then run `nuget install`. For a single package, delete the package folder and use `nuget install <id>` to reinstall the same one. |
2121

22+
> [!NOTE]
23+
> For the dotnet CLI, the equivalent procedure is not required. In a similar scenario, you can [restore packages with the dotnet CLI](../consume-packages/install-use-packages-dotnet-cli.md#restore-packages).
24+
2225
In this article:
2326

2427
- [When to Reinstall a Package](#when-to-reinstall-a-package)

docs/install-nuget-client-tools.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ To learn how to use basic commands with the `nuget.exe` CLI, see [Install and us
6262
- Visual Studio for Mac: certain NuGet capabilities are built in directly. See [Including a NuGet package in your project](/visualstudio/mac/nuget-walkthrough) for a walkthrough. For other capabilities, use the `dotnet.exe` or `nuget.exe` CLI tools.
6363

6464
- Visual Studio on Windows: The **NuGet Package Manager** is included with Visual Studio 2012 and later. Visual Studio provides the [Package Manager UI](tools/package-manager-ui.md) and the [Package Manager Console](tools/package-manager-console.md), through which you can run most NuGet operations.
65-
- The Visual Studio 2017 installer includes the NuGet Package Manager with any workload that employs .NET. To install separately, or to verify that the Package Manager is installed, run the Visual Studio 2017 installer and check the option under **Individual Components > Code tools > NuGet package manager**.
65+
- Starting in Visual Studio 2017, the installer includes the NuGet Package Manager with any workload that employs .NET. To install separately, or to verify that the Package Manager is installed, run the Visual Studio installer and check the option under **Individual Components > Code tools > NuGet package manager**.
6666
- The Package Manager UI and Console are unique to Visual Studio on Windows. They are not presently available on Visual Studio for Mac.
6767
- A CLI tool is required to support NuGet features in the IDE. You can use either the `dotnet` CLI or the the `nuget.exe` CLI. The `dotnet` CLI is installed with some Visual Studio workloads, such as .NET Core. The `nuget.exe` CLI must be installed separately as described earlier.
6868
- Package Manager Console commands work only within Visual Studio on Windows and do not work within other PowerShell environments.
@@ -97,10 +97,10 @@ To learn how to use basic commands with the `nuget.exe` CLI, see [Install and us
9797

9898
### Related topics
9999

100-
- [dotnet commands](tools/dotnet-commands.md)
101-
- [NuGet CLI reference](tools/nuget-exe-cli-reference.md)
102100
- [Install and manage packages using Visual Studio](tools/package-manager-ui.md)
103101
- [Install and manage packages using PowerShell](tools/package-manager-console.md)
102+
- [Install and manage packages using dotnet CLI](consume-packages/install-use-packages-dotnet-cli.md)
103+
- [Install and manage packages using nuget.exe CLI](consume-packages/install-use-packages-nuget-cli.md)
104104
- [Package Manager Console PowerShell reference](tools/powershell-reference.md)
105105
- [Creating a package](create-packages/creating-a-package.md)
106106
- [Publishing a Package](nuget-org/publish-a-package.md)

docs/quickstart/install-and-use-a-package-in-visual-studio.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,5 +118,6 @@ With the Newtonsoft.Json package in the project, you can call its `JsonConvert.S
118118
## Related articles
119119

120120
- [Overview and workflow of package consumption](../consume-packages/overview-and-workflow.md)
121+
- [Install and manage packages using Visual Studio](../tools/package-manager-ui.md)
121122
- [Finding and choosing packages](../consume-packages/finding-and-choosing-packages.md)
122123
- [Common NuGet configurations](../consume-packages/configuring-nuget-behavior.md)

docs/tools/Package-Manager-Console.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,19 @@ title: Install and manage NuGet packages using PowerShell in Visual Studio
33
description: Instructions for using the NuGet Package Manager Console in Visual Studio for working with packages.
44
author: karann-msft
55
ms.author: karann
6-
ms.date: 01/23/2018
6+
ms.date: 06/24/2019
77
ms.topic: conceptual
88
f1_keywords:
99
- "vs.nuget.packagemanager.console"
1010
---
1111

1212
# Install and manage packages using PowerShell in Visual Studio
1313

14-
The NuGet Package Manager Console is built into Visual Studio on Windows version 2012 and later. (It is not included with Visual Studio for Mac or Visual Studio Code.)
14+
The NuGet Package Manager Console lets you use [NuGet PowerShell commands](../tools/powershell-reference.md) to find, install, uninstall, and update NuGet packages. Using the console is necessary in cases where the Package Manager UI does not provide a way to perform an operation. To use `nuget.exe` CLI commands in the console, see [Using the nuget.exe CLI in the console](#using-the-nugetexe-cli-in-the-console).
1515

16-
The console lets you use [NuGet PowerShell commands](../tools/powershell-reference.md) to find, install, uninstall, and update NuGet packages. Using the console is necessary in cases where the Package Manager UI does not provide a way to perform an operation. To use `nuget.exe` commands in the console, see [Using the nuget.exe CLI in the console](#using-the-nugetexe-cli-in-the-console).
16+
The console is built into Visual Studio on Windows. It is not included with Visual Studio for Mac or Visual Studio Code.
17+
18+
## Find and install a package
1719

1820
For example, finding and installing a package is done with three easy steps:
1921

docs/tools/dotnet-Commands.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
---
2-
title: dotnet NuGet commands
2+
title: dotnet CLI NuGet commands
33
description: A short reference for NuGet-related commands using the dotnet command-line interface.
44
author: karann-msft
55
ms.author: karann
6-
ms.date: 01/23/2018
6+
ms.date: 06/24/2019
77
ms.topic: conceptual
88
---
99

10-
# dotnet commands
10+
# dotnet CLI commands
1111

12-
The `dotnet` command-line interface, which runs on Windows, Mac OS X, and Linux, provides a number of essential nuget.exe commands as listed below. If dotnet satisfies your needs, it's not necessary to use `nuget.exe`.
12+
The `dotnet` command-line interface (CLI), which runs on Windows, Mac OS X, and Linux, provides a number of essential commands such as installing, restoring, and publishing packages. If dotnet satisfies your needs, it's not necessary to use `nuget.exe`.
1313

14-
For complete information on `dotnet`, see [.NET Core command-line interface (CLI) tools](/dotnet/core/tools/?tabs=netcore2x).
14+
For examples of using these commands to consume packages, see [Install and manage packages using the dotnet CLI](../consume-packages/install-use-packages-dotnet-cli.md). For examples of using these commands to create packages, see [Create and publish a package using the dotnet CLI]../quickstart/create-and-publish-a-package-using-the-dotnet-cli.md).
15+
16+
For the complete command reference on `dotnet` CLI, see [.NET Core command-line interface (CLI) tools](/dotnet/core/tools/?tabs=netcore2x).
1517

1618
## Package consumption
1719

docs/tools/nuget-exe-CLI-Reference.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ To use any command, open a command window or bash shell, then run `nuget` follow
1515

1616
This documentation reflects the latest version of the NuGet CLI. For exact details for any given version that you're using, run `nuget help` for the desired command.
1717

18+
To learn how to use basic commands with the `nuget.exe` CLI, see [Install and use packages using the nuget.exe CLI](../consume-packages/install-use-packages-nuget-cli.md).
19+
1820
## Installing nuget.exe
1921

2022
[!INCLUDE [install-cli](../includes/install-cli.md)]

0 commit comments

Comments
 (0)