VOOZH about

URL: https://www.nuget.org/packages/Virtuesoft.Framework.Middlewares.MinioService/

⇱ NuGet Gallery | Virtuesoft.Framework.Middlewares.MinioService 1.1.6




👁 Image
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.
<PackageVersion Include="Virtuesoft.Framework.Middlewares.MinioService" Version="1.1.6" />
 
Directory.Packages.props
<PackageReference Include="Virtuesoft.Framework.Middlewares.MinioService" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Virtuesoft.Framework.Middlewares.MinioService --version 1.1.6
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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.
#:package Virtuesoft.Framework.Middlewares.MinioService@1.1.6
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Virtuesoft.Framework.Middlewares.MinioService&version=1.1.6
 
Install as a Cake Addin
#tool nuget:?package=Virtuesoft.Framework.Middlewares.MinioService&version=1.1.6
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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

Product Versions Compatible and additional computed target framework versions.
.NET net6.0 net6.0 is compatible.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.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 382 4/26/2023
1.1.4 328 4/26/2023
1.1.2 327 4/25/2023
1.1.1 338 4/23/2023
1.1.0 333 4/21/2023
1.0.9 333 4/21/2023
1.0.8 336 4/21/2023
1.0.6 347 4/21/2023
1.0.3 343 4/21/2023
1.0.2 350 4/21/2023
1.0.1 329 4/21/2023
1.0.0 355 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();
     }