DotNetBrightener.SimpleUploadService 2024.0.11

There is a newer version of this package available.
See the version list below for details.
dotnet add package DotNetBrightener.SimpleUploadService --version 2024.0.11
NuGet\Install-Package DotNetBrightener.SimpleUploadService -Version 2024.0.11
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.11" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotNetBrightener.SimpleUploadService --version 2024.0.11
#r "nuget: DotNetBrightener.SimpleUploadService, 2024.0.11"
#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.11

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

Simple Upload API for ASP.NET Application

© 2022 DotNet Brightener

Installation

Run this in command line:

dotnet add package DotNetBrightener.SimpleUploadService

Or add the following to .csproj file

<PackageReference Include="DotNetBrightener.SimpleUploadService" Version="2022.10.0" />

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 (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
2024.0.12.12815 111 5/7/2024
2024.0.12.12814 92 5/7/2024
2024.0.12.12721 108 5/6/2024
2024.0.12.12702 95 5/5/2024
2024.0.12.12622 105 5/5/2024
2024.0.12.12514 80 5/4/2024
2024.0.12.12512 85 5/4/2024
2024.0.12.12510 94 5/4/2024
2024.0.12.12420 70 5/3/2024
2024.0.12.12319 45 5/2/2024
2024.0.12.12319-rc-2405021801 31 5/2/2024
2024.0.12.12318 39 5/2/2024
2024.0.12.12215 80 5/1/2024
2024.0.12.12011 79 4/29/2024
2024.0.12.11720 96 4/26/2024
2024.0.12.11719 88 4/26/2024
2024.0.12.11621 94 4/25/2024
2024.0.12.11523 85 4/24/2024
2024.0.12.11522 94 4/24/2024
2024.0.12.11417 98 4/23/2024
2024.0.12.11400 94 4/22/2024
2024.0.12.11316 93 4/22/2024
2024.0.11.10220 91 4/11/2024
2024.0.11.10120 84 4/10/2024
2024.0.11.10119 80 4/10/2024
2024.0.11.10115 86 4/10/2024
2024.0.11.9914 119 4/8/2024
2024.0.11.9901 88 4/7/2024
2024.0.11.9823 104 4/7/2024
2024.0.11.9401 100 4/2/2024
2024.0.11.9301 103 4/1/2024
2024.0.11.9206 81 3/31/2024
2024.0.11.9205 69 3/31/2024
2024.0.11.8200 108 3/21/2024
2024.0.11.8122 83 3/21/2024
2024.0.11.8120 94 3/21/2024
2024.0.11.7320 138 3/13/2024
2024.0.11.7316 100 3/13/2024
2024.0.11.7310 90 3/13/2024
2024.0.11 88 3/13/2024
2024.0.10 112 3/3/2024
2024.0.9 122 2/27/2024
2024.0.8 144 2/1/2024
2024.0.7 101 1/26/2024
2024.0.6 91 1/25/2024
2024.0.5 86 1/24/2024
2024.0.4 83 1/24/2024
2024.0.3 98 1/22/2024
2024.0.2 159 1/10/2024
2024.0.1 103 1/9/2024
2024.0.1-alpha-3 70 1/9/2024
2024.0.1-alpha-2 90 1/9/2024
2024.0.1-alpha-1 98 1/3/2024
2024.0.0 147 12/26/2023
2023.0.27 100 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 150 11/27/2023
2023.0.19 131 11/20/2023
2023.0.18 152 10/25/2023
2023.0.17 175 10/22/2023
2023.0.16 142 10/16/2023
2023.0.16-alpha-1 90 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 148 8/16/2023
2023.0.8 134 8/15/2023
2023.0.8-alpha-2 241 5/31/2023
2023.0.7 128 5/12/2023
2023.0.6 170 5/10/2023
2023.0.5 138 5/7/2023
2023.0.4 170 4/22/2023
2023.0.3 201 4/19/2023
2023.0.2 198 4/6/2023
2023.0.1 205 3/13/2023
2022.11.1 332 11/12/2022
2022.11.0 318 11/7/2022
2022.10.0 336 10/28/2022