User guide
From the Manage NuGet Packages dialog box, select Online in the left pane.You can then search for
the package that you want to install using the search box in the upper right corner.The screenshot shows
the AWS.Extensions assembly package. Notice that NuGet is aware that this package has a dependency
on the AWSSDK assembly package; NuGet will therefore install the AWSSDK package if it is not already
installed.
NuGet Package Manager Console
To use NuGet from the Package Manager Console within Visual Studio, from the View menu, select
Other Windows, and click Package Manager Console. From the console, you can install the AWS
assemblies using the Install-Package command. For example, to install the AWS SDK for .NET
assembly, use the following command line:
Install-Package AWSSDK
To install an earlier version of a package, use the -Version option and specify the desired package
version. For example, to install version 1.5.1.0 of the AWS SDK for .NET assembly, use the following
command line:
Install-Package AWSSDK -Version 1.5.1.0
The NuGet website provides a page for every package that is available through NuGet such as the
AWSSDK and AWS.Extensions assemblies. The page for each package includes a sample command
line for installing the package using the console. Each page also includes a list of the previous versions
of the package that are available through NuGet.
Version v2.0.0
30
AWS SDK for .NET Developer Guide
NuGet Package Manager Console