DotNetBrightener.SimpleUploadService
2025.0.1-rc-243301701
dotnet add package DotNetBrightener.SimpleUploadService --version 2025.0.1-rc-243301701
NuGet\Install-Package DotNetBrightener.SimpleUploadService -Version 2025.0.1-rc-243301701
<PackageReference Include="DotNetBrightener.SimpleUploadService" Version="2025.0.1-rc-243301701" />
paket add DotNetBrightener.SimpleUploadService --version 2025.0.1-rc-243301701
#r "nuget: DotNetBrightener.SimpleUploadService, 2025.0.1-rc-243301701"
// Install DotNetBrightener.SimpleUploadService as a Cake Addin #addin nuget:?package=DotNetBrightener.SimpleUploadService&version=2025.0.1-rc-243301701&prerelease // Install DotNetBrightener.SimpleUploadService as a Cake Tool #tool nuget:?package=DotNetBrightener.SimpleUploadService&version=2025.0.1-rc-243301701&prerelease
Simple Upload API for ASP.NET Application
© 2024 DotNet Brightener
Installation
Run this in command line:
dotnet add package DotNetBrightener.SimpleUploadService
Usage
1. Register the service
serviceCollection.RegisterSimpleUploadService(builder => {
// configure your upload configuration here
});
2. Upload Path
Default upload folder is {environment.ContentRootPath}/Media
. For example, if you deploy the application in /app
of the computer, the upload folder will be /app/Media
.
You can replace the default upload folder by implementing IUploadFolderPathResolver
interface and provide your own logic of determining where to store the uploaded file.
public class TenantBasedUploadPathResolver : IUploadFolderResolver
{
public string UploadRootPath { get; }
public TenantBasedUploadPathResolver(IHostEnvironment hostEnvironment)
{
this.UploadRootPath = hostEnvironment.ContentRootPath;
}
public Task<string> ResolveUploadPath(string uploadPath)
{
return Task.FromResult(uploadPath.Replace('/', Path.DirectorySeparatorChar)
.Replace('\\', Path.DirectorySeparatorChar));
}
}
Resizing image when upload
Implement your own logic for resizing photos by deriving the IImageResizer
interface. Then you need to register it by
Extend API with IUploadServiceProvider
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. |
-
net9.0
- DotNetBrightener.Plugins.EventPubSub (>= 2025.0.1-rc-243301701)
- Newtonsoft.Json (>= 13.0.3)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on DotNetBrightener.SimpleUploadService:
Package | Downloads |
---|---|
DotNetBrightener.UploadService.AzureBlobStorage
Azure Blob Storage Upload API for ASP.NET Core Applications |
|
DotNetBrightener.UploadService.ImageOptimizer
An Image Resizer used with DotNetBrightener.SimpleUploadService package |
GitHub repositories
This package is not used by any popular GitHub repositories.