如何从 nuget 使用 .NET Core 从命令行下载包



Microsoft 将 .NET Core 打包在 Linux 上用于 Ubuntu。我目前正在使用它。我现在想安装 Json.NET 它指示我使用包管理器控制台并运行,

PM> Install-Package Newtonsoft.Json

我想知道我是如何做到Linux的。我看到有一个Nuget CLI,但它似乎在.NET Core上不可用。此外,文档说

在 Mac 和 Linux 上,安装 Mono 4.4.2 或更高版本。

如何在 Linux 上简单地安装软件包?npm/cpan/pip/gem的.NET等价物是什么?

当我运行dotnet nuget时,install命令似乎丢失了。

NuGet Command Line 4.3.0.5
Usage: dotnet nuget [options] [command]
Options:
  -h|--help                   Show help information
  --version                   Show version information
  -v|--verbosity <verbosity>  The verbosity of logging to use. Allowed values: Debug, Verbose, Information, Minimal, Warning, Error.
Commands:
  delete  Deletes a package from the server.
  locals  Clears or lists local NuGet resources such as http requests cache, packages cache or machine-wide global packages folder.
  push    Pushes a package to the server and publishes it.
Use "dotnet nuget [command] --help" for more information about a command.

dotnet add package --help

dotnet add package Newtonsoft.Json

有关更多详细信息,请参阅 https://github.com/dotnet/docs/blob/master/docs/core/tools/dotnet-add-package.md 的 github 页面。

最新更新