Skip to content
cgcel edited this page Jul 29, 2023 · 6 revisions

Catalog

Installation Methods

Install in Visual Studio

Install from nuget.org source

Refer to Microsoft's document.

  1. Load a project in Solution Explorer, and then select Project > Manage NuGet Packages.
  2. Select the Browse tab to display packages by popularity from the currently selected source (see Package sources). To search for a specific package, use the search box on the upper left. Select a package from the list to display its information on the right pane, which enables you to select a version to install.
  3. In the right pane, select a Version from the dropdown list. If you want to include prerelease versions in the Version list, select Include prerelease.
  4. To install the NuGet package, select Install. You might be asked to accept license terms or prompted to verify the installation.

Local Install

  1. Download the NanoRabbit.x.x.x.nupkg at releases page.
  2. Open Visual Studio, setup the Package sources, create a Package source and set Source as the path to .nupkg file.
  3. Search NanoRabbit at Package source and install.

.NET CLI

dotnet add package NanoRabbit --version {version}

See nuget.org to learn more.

Package Manager Console

Install-Package NanoRabbit

More details at Microsoft Nuget Document

Recommend