Virtuesoft.Framework.Middlewares.MinioService 1.1.6

dotnet add package Virtuesoft.Framework.Middlewares.MinioService --version 1.1.6
NuGet\Install-Package Virtuesoft.Framework.Middlewares.MinioService -Version 1.1.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Virtuesoft.Framework.Middlewares.MinioService" Version="1.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Virtuesoft.Framework.Middlewares.MinioService --version 1.1.6
#r "nuget: Virtuesoft.Framework.Middlewares.MinioService, 1.1.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Virtuesoft.Framework.Middlewares.MinioService as a Cake Addin
#addin nuget:?package=Virtuesoft.Framework.Middlewares.MinioService&version=1.1.6

// Install Virtuesoft.Framework.Middlewares.MinioService as a Cake Tool
#tool nuget:?package=Virtuesoft.Framework.Middlewares.MinioService&version=1.1.6

minio 服务组件,包括上传,下载转发  需要依赖 Minio.AspNetCore .

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.6 174 4/26/2023
1.1.4 149 4/26/2023
1.1.2 155 4/25/2023
1.1.1 163 4/23/2023
1.1.0 156 4/21/2023
1.0.9 158 4/21/2023
1.0.8 164 4/21/2023
1.0.6 159 4/21/2023
1.0.3 167 4/21/2023
1.0.2 175 4/21/2023
1.0.1 155 4/21/2023
1.0.0 172 4/5/2023

public void ConfigureServices(IServiceCollection services)
     {
     services..AddMinio(option =>
     {
     option.Endpoint ="";
     option.SecretKey = "";
     option.AccessKey ="";
     option.Region ="";
     });
     services.AddMinioService(option=>{
     option.Endpoint="服务器节点";
     option.AccessEndpoint="对外访问的域名";
     option.AccessExpTime="获取分享连接的过期时间";
     option.Bucket="桶名称";
     option.MaxLength="上传文件最大大小";
     option.Folder="本地缩略图缓存文件夹";
     });
     }

     public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
     {
     app.UseMinioService();
     }