DotNetBrightener.SimpleUploadService 2025.0.4-preview-299

This is a prerelease version of DotNetBrightener.SimpleUploadService.
dotnet add package DotNetBrightener.SimpleUploadService --version 2025.0.4-preview-299
                    
NuGet\Install-Package DotNetBrightener.SimpleUploadService -Version 2025.0.4-preview-299
                    
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="DotNetBrightener.SimpleUploadService" Version="2025.0.4-preview-299" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotNetBrightener.SimpleUploadService" Version="2025.0.4-preview-299" />
                    
Directory.Packages.props
<PackageReference Include="DotNetBrightener.SimpleUploadService" />
                    
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 DotNetBrightener.SimpleUploadService --version 2025.0.4-preview-299
                    
#r "nuget: DotNetBrightener.SimpleUploadService, 2025.0.4-preview-299"
                    
#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.
#addin nuget:?package=DotNetBrightener.SimpleUploadService&version=2025.0.4-preview-299&prerelease
                    
Install DotNetBrightener.SimpleUploadService as a Cake Addin
#tool nuget:?package=DotNetBrightener.SimpleUploadService&version=2025.0.4-preview-299&prerelease
                    
Install DotNetBrightener.SimpleUploadService as a Cake Tool

Simple Upload API for ASP.NET Application

© 2024 DotNet Brightener

NuGet Version

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 Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  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 (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.

Version Downloads Last updated
2025.0.4-preview-299 102 5/31/2025
2025.0.4-preview-298 89 5/30/2025
2025.0.4-preview-296 127 5/30/2025
2025.0.4-preview-295 141 5/29/2025
2025.0.4-preview-293 138 5/26/2025
2025.0.4-preview-292 138 5/26/2025
2025.0.3 128 2/10/2025
2025.0.3-preview-288 98 2/10/2025
2025.0.2 126 1/21/2025
2025.0.2-preview-278 93 1/21/2025
2025.0.2-preview-277 106 12/16/2024
2025.0.1-rc-243301701 333 11/25/2024
2024.0.14.6 127 11/25/2024
2024.0.14.6-rc-243031001 158 10/29/2024
2024.0.14.6-rc-243030701 111 10/29/2024
2024.0.14.6-rc-242840501 97 10/10/2024
2024.0.14.6-rc-242820305 101 10/8/2024
2024.0.14.6-rc-242771401 169 10/3/2024
2024.0.14.6-rc-242770501 102 10/3/2024
2024.0.14.6-rc-242770201 112 10/3/2024
2024.0.14.6-rc-242761801 107 10/2/2024
2024.0.14.6-rc-242761601 105 10/2/2024
2024.0.14.6-rc-242761501 101 10/2/2024
2024.0.14.6-rc-242761401 103 10/2/2024
2024.0.14.6-rc-242760701 115 10/2/2024
2024.0.14.6-rc-242751002 93 10/1/2024
2024.0.14.6-rc-242750901 120 10/1/2024
2024.0.14.6-rc-242750502 108 10/1/2024
2024.0.14.6-rc-242750201 112 10/1/2024
2024.0.14.6-rc-242741501 93 9/30/2024
2024.0.14.6-rc-242730701 125 9/29/2024
2024.0.14.6-preview-2730501 94 9/29/2024
2024.0.14.6-preview-2701501 124 9/26/2024
2024.0.14.6-preview-2620901 151 9/18/2024
2024.0.14.6-preview-2570701 126 9/13/2024
2024.0.14.6-preview-2510703 150 9/7/2024
2024.0.14.6-preview-2480501 134 9/4/2024
2024.0.14.6-preview-2430401 143 8/30/2024
2024.0.14.6-preview-242730701 96 9/29/2024
2024.0.14.6-preview-2421703 125 8/29/2024
2024.0.14.6-preview-2421701 115 8/29/2024
2024.0.14.6-preview-2420901 106 8/29/2024
2024.0.14.6-preview-2390101 136 8/26/2024
2024.0.14.6-preview-2381603 138 8/25/2024
2024.0.14.6-preview-2341601 161 8/21/2024
2024.0.14.6-preview-2321602 124 8/20/2024
2024.0.14.6-preview-2190801 137 8/6/2024
2024.0.14.6-preview-2041501 95 7/22/2024
2024.0.14.6-preview-1920603 162 7/10/2024
2024.0.14.6-preview-1920301 101 7/10/2024
2024.0.14.6-preview-1911302 130 7/9/2024
2024.0.14.6-preview-1901001 134 7/8/2024
2024.0.14.6-preview-1900901 123 7/8/2024
2024.0.14.6-preview-1900801 119 7/8/2024
2024.0.14.6-preview-1860304 132 7/4/2024
2024.0.14.5 206 7/1/2024
2024.0.14.5-preview-1811601 120 6/29/2024
2024.0.14.5-preview-1810501 136 6/29/2024
2024.0.14.5-preview-180132 132 6/28/2024
2024.0.14.5-preview-180131 121 6/28/2024
2024.0.14.5-preview-180121 119 6/28/2024
2024.0.14.4 159 6/27/2024
2024.0.14.4-preview-7 126 6/27/2024
2024.0.14.3 149 6/21/2024
2024.0.14.1 142 6/6/2024
2024.0.14.1-preview 115 6/6/2024
2024.0.14-preview-1 107 6/6/2024
2024.0.13.8-preview 109 6/6/2024
2024.0.13.1-preview-0146 111 6/6/2024
2024.0.12.15803-preview-03 118 6/6/2024
2024.0.12.15608 139 6/4/2024
2024.0.12.15515 217 6/3/2024
2024.0.12.15220 134 5/31/2024
2024.0.12.15220-alpha31-240... 105 5/31/2024
2024.0.12.14911 176 5/28/2024
2024.0.12.14910-alpha28-240... 119 5/28/2024
2024.0.12.14823 148 5/27/2024
2024.0.12.14522-alpha7-2405... 125 5/24/2024
2024.0.12.14514-alpha6-2405... 127 5/24/2024
2024.0.12.14511 161 5/24/2024
2024.0.12.14314 169 5/22/2024
2024.0.12.14114 156 5/20/2024
2024.0.12.12815 199 5/7/2024
2024.0.12.12814 171 5/7/2024
2024.0.12.12721 175 5/6/2024
2024.0.12.12702 165 5/5/2024
2024.0.12.12622 173 5/5/2024
2024.0.12.12514 149 5/4/2024
2024.0.12.12512 152 5/4/2024
2024.0.12.12510 167 5/4/2024
2024.0.12.12420 142 5/3/2024
2024.0.12.12319 122 5/2/2024
2024.0.12.12319-rc-2405021801 87 5/2/2024
2024.0.12.12318 105 5/2/2024
2024.0.12.12215 146 5/1/2024
2024.0.12.12011 141 4/29/2024
2024.0.12.11720 154 4/26/2024
2024.0.12.11719 150 4/26/2024
2024.0.12.11621 157 4/25/2024
2024.0.12.11523 147 4/24/2024
2024.0.12.11522 159 4/24/2024
2024.0.12.11417 164 4/23/2024
2024.0.12.11400 158 4/22/2024
2024.0.12.11316 156 4/22/2024
2024.0.11.10220 150 4/11/2024
2024.0.11.10120 143 4/10/2024
2024.0.11.10119 134 4/10/2024
2024.0.11.10115 144 4/10/2024
2024.0.11.9914 180 4/8/2024
2024.0.11.9901 165 4/7/2024
2024.0.11.9823 162 4/7/2024
2024.0.11.9401 156 4/2/2024
2024.0.11.9301 156 4/1/2024
2024.0.11.9206 140 3/31/2024
2024.0.11.9205 117 3/31/2024
2024.0.11.8200 167 3/21/2024
2024.0.11.8122 137 3/21/2024
2024.0.11.8120 157 3/21/2024
2024.0.11.7320 201 3/13/2024
2024.0.11.7316 157 3/13/2024
2024.0.11.7310 154 3/13/2024
2024.0.11 138 3/13/2024
2024.0.10 181 3/3/2024
2024.0.9 176 2/27/2024
2024.0.8 200 2/1/2024
2024.0.7 155 1/26/2024
2024.0.6 150 1/25/2024
2024.0.5 143 1/24/2024
2024.0.4 141 1/24/2024
2024.0.3 163 1/22/2024
2024.0.2 223 1/10/2024
2024.0.1 165 1/9/2024
2024.0.1-alpha-3 116 1/9/2024
2024.0.1-alpha-2 124 1/9/2024
2024.0.1-alpha-1 149 1/3/2024
2024.0.0 209 12/26/2023
2023.0.27 163 12/21/2023
2023.0.26 149 12/21/2023
2023.0.25 189 12/11/2023
2023.0.24 195 12/8/2023
2023.0.23 160 12/6/2023
2023.0.21 185 12/4/2023
2023.0.20 192 11/27/2023
2023.0.19 176 11/20/2023
2023.0.18 210 10/25/2023
2023.0.17 227 10/22/2023
2023.0.16 195 10/16/2023
2023.0.16-alpha-1 135 10/16/2023
2023.0.15 201 10/14/2023
2023.0.14 159 10/14/2023
2023.0.13 169 10/14/2023
2023.0.12 172 10/14/2023
2023.0.11 149 10/10/2023
2023.0.10 159 10/9/2023
2023.0.9 198 8/16/2023
2023.0.8 186 8/15/2023
2023.0.8-alpha-2 293 5/31/2023
2023.0.7 191 5/12/2023
2023.0.6 340 5/10/2023
2023.0.5 201 5/7/2023
2023.0.4 239 4/22/2023
2023.0.3 258 4/19/2023
2023.0.2 255 4/6/2023
2023.0.1 261 3/13/2023
2022.11.1 386 11/12/2022
2022.11.0 375 11/7/2022
2022.10.0 395 10/28/2022