DotNetBrightener.SimpleUploadService 2024.0.12.12721

dotnet add package DotNetBrightener.SimpleUploadService --version 2024.0.12.12721
NuGet\Install-Package DotNetBrightener.SimpleUploadService -Version 2024.0.12.12721
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="2024.0.12.12721" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotNetBrightener.SimpleUploadService --version 2024.0.12.12721
#r "nuget: DotNetBrightener.SimpleUploadService, 2024.0.12.12721"
#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 DotNetBrightener.SimpleUploadService as a Cake Addin
#addin nuget:?package=DotNetBrightener.SimpleUploadService&version=2024.0.12.12721

// Install DotNetBrightener.SimpleUploadService as a Cake Tool
#tool nuget:?package=DotNetBrightener.SimpleUploadService&version=2024.0.12.12721

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 net8.0 is compatible.  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 (1)

Showing the top 1 NuGet packages that depend on DotNetBrightener.SimpleUploadService:

Package Downloads
DotNetBrightener.UploadService.AzureBlobStorage

Azure Blob Storage Upload API for ASP.NET Core Applications

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2024.0.12.12721 0 5/6/2024
2024.0.12.12702 42 5/5/2024
2024.0.12.12622 56 5/5/2024
2024.0.12.12514 44 5/4/2024
2024.0.12.12512 44 5/4/2024
2024.0.12.12510 52 5/4/2024
2024.0.12.12420 26 5/3/2024
2024.0.12.12319 0 5/2/2024
2024.0.12.12319-rc-2405021801 0 5/2/2024
2024.0.12.12318 0 5/2/2024
2024.0.12.12215 37 5/1/2024
2024.0.12.12011 75 4/29/2024
2024.0.12.11720 92 4/26/2024
2024.0.12.11719 84 4/26/2024
2024.0.12.11621 90 4/25/2024
2024.0.12.11523 81 4/24/2024
2024.0.12.11522 90 4/24/2024
2024.0.12.11417 95 4/23/2024
2024.0.12.11400 91 4/22/2024
2024.0.12.11316 90 4/22/2024
2024.0.11.10220 89 4/11/2024
2024.0.11.10120 82 4/10/2024
2024.0.11.10119 78 4/10/2024
2024.0.11.10115 84 4/10/2024
2024.0.11.9914 117 4/8/2024
2024.0.11.9901 86 4/7/2024
2024.0.11.9823 102 4/7/2024
2024.0.11.9401 98 4/2/2024
2024.0.11.9301 101 4/1/2024
2024.0.11.9206 78 3/31/2024
2024.0.11.9205 67 3/31/2024
2024.0.11.8200 106 3/21/2024
2024.0.11.8122 78 3/21/2024
2024.0.11.8120 92 3/21/2024
2024.0.11.7320 137 3/13/2024
2024.0.11.7316 99 3/13/2024
2024.0.11.7310 85 3/13/2024
2024.0.11 83 3/13/2024
2024.0.10 110 3/3/2024
2024.0.9 119 2/27/2024
2024.0.8 142 2/1/2024
2024.0.7 98 1/26/2024
2024.0.6 89 1/25/2024
2024.0.5 84 1/24/2024
2024.0.4 81 1/24/2024
2024.0.3 96 1/22/2024
2024.0.2 157 1/10/2024
2024.0.1 101 1/9/2024
2024.0.1-alpha-3 69 1/9/2024
2024.0.1-alpha-2 90 1/9/2024
2024.0.1-alpha-1 98 1/3/2024
2024.0.0 146 12/26/2023
2023.0.27 99 12/21/2023
2023.0.26 98 12/21/2023
2023.0.25 125 12/11/2023
2023.0.24 134 12/8/2023
2023.0.23 110 12/6/2023
2023.0.21 129 12/4/2023
2023.0.20 149 11/27/2023
2023.0.19 131 11/20/2023
2023.0.18 151 10/25/2023
2023.0.17 175 10/22/2023
2023.0.16 142 10/16/2023
2023.0.16-alpha-1 89 10/16/2023
2023.0.15 148 10/14/2023
2023.0.14 105 10/14/2023
2023.0.13 121 10/14/2023
2023.0.12 124 10/14/2023
2023.0.11 104 10/10/2023
2023.0.10 114 10/9/2023
2023.0.9 147 8/16/2023
2023.0.8 134 8/15/2023
2023.0.8-alpha-2 240 5/31/2023
2023.0.7 127 5/12/2023
2023.0.6 170 5/10/2023
2023.0.5 138 5/7/2023
2023.0.4 169 4/22/2023
2023.0.3 201 4/19/2023
2023.0.2 198 4/6/2023
2023.0.1 204 3/13/2023
2022.11.1 331 11/12/2022
2022.11.0 318 11/7/2022
2022.10.0 335 10/28/2022