You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
1 year ago | |
|---|---|---|
| .. | ||
| LINGYUN/Abp/BlobStoring/Aliyun | 1 year ago | |
| FodyWeavers.xml | 2 years ago | |
| FodyWeavers.xsd | 2 years ago | |
| LINGYUN.Abp.BlobStoring.Aliyun.csproj | 1 year ago | |
| README.md | 2 years ago | |
README.md
LINGYUN.Abp.BlobStoring.Aliyun
abp框架对象存储提供者IBlobProvider的阿里云实现
配置使用
模块按需引用
事先定义appsettings.json文件
{
"Aliyun": {
"OSS": {
"BucketName": "你定义的BucketName",
"Endpoint": "http://oss-cn-shanghai.aliyuncs.com",
"CreateBucketIfNotExists": true
}
}
}
[DependsOn(typeof(AbpBlobStoringAliyunModule))]
public class YouProjectModule : AbpModule
{
// other
}