Matrixs.FileUploader.Features
1.0.3
dotnet add package Matrixs.FileUploader.Features --version 1.0.3
NuGet\Install-Package Matrixs.FileUploader.Features -Version 1.0.3
<PackageReference Include="Matrixs.FileUploader.Features" Version="1.0.3" />
<PackageVersion Include="Matrixs.FileUploader.Features" Version="1.0.3" />
<PackageReference Include="Matrixs.FileUploader.Features" />
paket add Matrixs.FileUploader.Features --version 1.0.3
#r "nuget: Matrixs.FileUploader.Features, 1.0.3"
#:package Matrixs.FileUploader.Features@1.0.3
#addin nuget:?package=Matrixs.FileUploader.Features&version=1.0.3
#tool nuget:?package=Matrixs.FileUploader.Features&version=1.0.3
Add support for custom upload paths in FileUploader FileUploadOptions now includes UseWwwroot and CustomUploadPath properties, allowing uploads to be stored either in wwwroot or a configurable directory. Updated FileUploader to use these options when determining the upload destination. Added XML documentation for the new properties. You can edit your configuration in appsetting file like this: "FileUpload": { "MaxFileSizeBytes": 5242880, "AllowedExtensions": [ ".jpg", ".jpeg", ".png", ".pdf", ".zip", ".rar", ".doc", ".docx", ".xls", ".xlsx" ], "UseWwwroot": false, "CustomUploadPath": "Uploads" }
| Product | Versions 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. |
-
net9.0
- Microsoft.AspNetCore.Http (>= 2.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Add support for custom upload paths in FileUploader
FileUploadOptions now includes UseWwwroot and CustomUploadPath properties, allowing uploads to be stored either in wwwroot or a configurable directory. Updated FileUploader to use these options when determining the upload destination. Added XML documentation for the new properties.