文档中心 > 安装
安装

最近更新时间:2021-10-29

本文介绍如何安装 .net SDK。


环境准备

环境要求

.NET Standard: Supported in: 2.0

.NET Framework: Supported in: 4.5, 4.0, 3.5

查看版本

执行dotnet.exe --version命令,查看 .net sdk版本。


使用SDK

  1. 运行如下命令,建立.net项目。

    dotnet new console --output sample1

  2. cd进入项目目录。

  3. 运行命令下载斌且引用SDK。

    dotnet add package AWSSDK.S3 --version 3.3.111.34

  4. 在Program.cs中加入下列代码直接引用。

      using Amazon.S3;
      using Amazon.S3.Model;