Skip to content

Commit d8b6b72

Browse files
committed
Updated README.md
1 parent fe46813 commit d8b6b72

File tree

3 files changed

+122
-12
lines changed

3 files changed

+122
-12
lines changed

.gitattributes

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain

.gitignore

Lines changed: 37 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22
[Bb]in/
33
[Oo]bj/
44

5+
# Logs
6+
Logs/
7+
8+
# Generated files
9+
project.lock.json
10+
.vs/
11+
12+
# Nuget packages
13+
nupkg/*.nupkg
14+
nupkg/push.bat
15+
16+
# Profile images
17+
ProfileImages/
18+
19+
# mstest test results
20+
TestResults
21+
522
## Ignore Visual Studio temporary files, build results, and
623
## files generated by popular Visual Studio add-ons.
724

@@ -60,28 +77,32 @@ _ReSharper*
6077
# Installshield output folder
6178
[Ee]xpress
6279

80+
# DocProject is a documentation generator add-in
81+
DocProject/buildhelp/
82+
DocProject/Help/*.HxT
83+
DocProject/Help/*.HxC
84+
DocProject/Help/*.hhc
85+
DocProject/Help/*.hhk
86+
DocProject/Help/*.hhp
87+
DocProject/Help/Html2
88+
DocProject/Help/html
89+
6390
# Click-Once directory
6491
publish
6592

6693
# Publish Web Output
6794
*.Publish.xml
6895

96+
# NuGet Packages Directory
97+
packages
98+
6999
# Windows Azure Build Output
70100
csx
71101
*.build.csdef
72102

73103
# Windows Store app package directory
74104
AppPackages/
75105

76-
# NuGet Packages Directory
77-
packages
78-
79-
# Subversion Directory
80-
.svn
81-
82-
# GhostDoc XML
83-
*.GhostDoc.xml
84-
85106
# Others
86107
[Bb]in
87108
[Oo]bj
@@ -99,4 +120,10 @@ Generated_Code #added for RIA/Silverlight projects
99120
# Visual Studio version. Backup files are not needed, because we have git ;-)
100121
_UpgradeReport_Files/
101122
Backup*/
102-
UpgradeLog*.XML
123+
UpgradeLog*.XML
124+
src/.vs/config/applicationhost.config
125+
126+
# GitLink
127+
!GitLink.exe
128+
!nuget.exe
129+
!SQLite.Interop.dll

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,30 @@
22

33
## Requirements
44

5-
- 支持 .Net Core 1.0 及以上版本;
5+
- 仅支持 .NET Core 2.0 及以上版本(为推进新版本发展,停止支持 .NET Core 1.0、1.1版本)
66
- 下载SDK 把 `Aliyun.Acs.Core.dll` 和相应产品的 .dll 文件添加引用到项目中。
77

8-
## Example
8+
## Installation
9+
进入 [Alibaba Cloud SDK for .NET Nuget Package](https://www.nuget.org/profiles/aliyun-openapi-sdk) 页面,查看已发布的阿里云产品 SDK 模块列表。
10+
11+
> **注意:** 部分阿里云产品的 SDK 未收录到这个列表中,例如对象存储(OSS),表格存储(Table Store),请前往这些产品的详情页获取相应的 SDK。
12+
13+
使用ECS产品时,应安装 [ECS Nuget Package](https://www.nuget.org/packages/aliyun-net-sdk-ecs/)
14+
如果要安装特定版本,请添加`--version`,否则它将安装此软件包的最新版本。
15+
16+
您可以通过 NuGet 程序包管理器来安装:
17+
18+
*`解决方案资源管理器面板` 中右击您的项目选择 `管理 NuGet 程序包` 菜单,在打开的 `NuGet 管理面板` 中点击 `浏览` 选项卡输入 `aliyun-net-sdk`,在下方列表中选择 `Authors``Alibaba Cloud` 由官方发布的各产品模块,选择您期望的模块点击 **安装** 即可。
19+
20+
或者通过 .NET CLI 工具来安装(以安装 ECS为例)
21+
22+
dotnet add package aliyun-net-sdk-ecs
23+
24+
使用程序包管理器控制台
25+
26+
Install-Package aliyun-net-sdk-ecs
27+
28+
## Examples
929

1030
```csharp
1131
using Aliyun.Acs.Core;

0 commit comments

Comments
 (0)