OSS SDK for .NET allows you to programmatically manage resources in Object Storage Service (OSS). For example, you can manage buckets, upload objects, download objects, and process images. This topic describes how to install OSS SDK for .NET.
Prerequisites
Windows
.NET 2.0 or later is required.
Visual Studio 2010 or later is required.
Linux/Mac
Mono 3.12 or later is required.
Download the SDK
Download from GitHub
Download previous versions
Install the SDK
Install OSS SDK for .NET in Windows
Install by using NuGet
If NuGet is not installed for your Visual Studio, install NuGet first. For more information, see Install NuGet client tools.
After you install NuGet, create a project or open an existing project in Visual Studio. Then, choose
.Enter aliyun.oss.sdk in the search box and click Search. Find Aliyun.OSS.SDK (applicable to .NET Framework) or Aliyun.OSS.SDK.NetCore (applicable to .Net Core) in the search results. Select the latest version and click Install.
Install by using a DLL file
Download and decompress the installation package of OSS SDK for .NET.
Compile the aliyun-oss-sdk project in Release mode to generate a Dynamic Link Library (DLL) file.
In Visual Studio, go to Solution Explorer and find your project. Right-click the project name and choose
. In the dialog box that appears, select Browse.Find the bin directory generated by the DLL file and select the Aliyun.OSS.dll file in the bin directory. Then, click OK.
Install by importing a project
If you download the SDK installation package or download the source code from GitHub and use the source code to install the SDK, perform the following steps:
In Visual Studio, right-click Solution and select a solution. Then, choose Add > Existing projects.
In the dialog box that appears, select the aliyun-oss-sdk.csproj file. Click Open.
Right-click the name of your project and choose
. In the dialog box that appears, click the Projects tab, select the aliyun-oss-sdk project, and then click OK.
Install OSS SDK for .NET in Unix or macOS
Perform the following operations to install the SDK by using NuGet:
In Xamarin, create a project or open an existing project. Select Add NuGet.
Search for Aliyun.OSS.SDK or Aliyun.OSS.SDK.NetCore. Select the latest version and click Add Package to add the package to the project application.