ResponsiveFileManager.AspNetCore 2.0.0

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

The whole of Responsive File Manager, compiled, packed and provided as an ASP.NET Core package. Does not require PHP, becomes a part of ASP.NET Core application.

Usage:

1. Add a package reference to "ResponsiveFileManager.AspNetCore"

2. Add the following to your **appsettings.json**:

```json
"ResponsiveFileManagerOptions": {
// Path from base_url to base of upload folder. Use start and final /
"UploadDirectory": "/Media/Uploads/",

// Relative path from filemanager folder to upload folder. Use final /
"CurrentPath": "../Media/Uploads/",

// Relative path from filemanager folder to thumbs folder. Use final / and DO NOT put inside upload folder.
"ThumbsBasePath": "../Media/Thumbs/",

"MaxSizeUpload":  10
}
```

3. Add ResponsiveFileManager as middleware:

```csharp
app.UseResponsiveFileManager();
```

4. Optionally configure ResponsiveFileManager settings:

```csharp
builder.Services.AddResponsiveFileManager(options =>
{
options.MaxSizeUpload = 32;
//etc
});
```;

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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.0 146 5/19/2025
2.0.0-beta 138 5/18/2025
1.6.0 167 3/23/2025
1.5.0 655 4/9/2024
1.4.1 2,533 2/22/2022
1.4.0 2,057 11/28/2021
1.0.0 1,331 6/22/2020