ISL.NetFramework.FileStorage
1.0.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ISL.NetFramework.FileStorage --version 1.0.1
NuGet\Install-Package ISL.NetFramework.FileStorage -Version 1.0.1
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="ISL.NetFramework.FileStorage" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ISL.NetFramework.FileStorage" Version="1.0.1" />
<PackageReference Include="ISL.NetFramework.FileStorage" />
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 ISL.NetFramework.FileStorage --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ISL.NetFramework.FileStorage, 1.0.1"
#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.
#:package ISL.NetFramework.FileStorage@1.0.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ISL.NetFramework.FileStorage&version=1.0.1
#tool nuget:?package=ISL.NetFramework.FileStorage&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ISL.NetFramework.FileStorage
Production-ready storage abstraction with pluggable providers:
- Amazon S3
- MinIO (S3-compatible)
- Azure Blob Storage / Azurite
- FTP / FTPS
Configuration (appsettings*.json)
Register storage:
services.AddIslFileStorage(configuration);
Configure providers under Framework:FileStorage:
{
"Framework": {
"FileStorage": {
"Enabled": true,
"DefaultProfile": "public-files",
"Profiles": [
{
"Name": "public-files",
"Provider": "AzureBlob",
"RootPath": "cms-assets",
"PublicBaseUrl": "https://cdn.example.com",
"AzureBlob": {
"ConnectionString": "UseDevelopmentStorage=true",
"ContainerName": "media",
"CreateContainerIfNotExists": true,
"PublicAccess": true
}
},
{
"Name": "private-minio",
"Provider": "Minio",
"RootPath": "tenant-a",
"S3": {
"BucketName": "content",
"Region": "us-east-1",
"AccessKey": "minioadmin",
"SecretKey": "minioadmin",
"ServiceUrl": "http://localhost:9000",
"UsePathStyle": true,
"UseHttp": true,
"CreateBucketIfNotExists": true
}
},
{
"Name": "ftp-archive",
"Provider": "Ftp",
"RootPath": "archive",
"Ftp": {
"Host": "ftp.example.com",
"Port": 21,
"Username": "ftp-user",
"Password": "ftp-password",
"UseSsl": false,
"RootDirectory": "/"
}
}
]
}
}
}
Content Logging (CMS Content Entity)
UploadContentAsync creates storage metadata mapped directly to:
ISL.NetFramework.Entity.Framework.CMS.MSSQL.Content
var storage = storageProvider.GetStorage("public-files");
var result = await storage.UploadContentAsync(new ContentStorageUploadRequest
{
ContainerName = "media",
FileName = "2026/04/banner.png",
OriginalFileName = "banner.png",
Content = stream,
ContentType = "image/png",
IsItPrivateContainer = false,
Keywords = new[] { "home", "hero" }
}, cancellationToken);
// Persist directly to CMS content table
var contentLog = result.ContentLog;
ContentLog includes:
StorageBaseUrlContainerNameIsItPrivateContainerFileNameOriginalFileNameThumbnailContainerNameSmallThumbnailUrlPrivacyContentTypeUploaded(UTC)ExtensionKeywordsIsHidden
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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.
-
net10.0
- AWSSDK.S3 (>= 3.7.402.1)
- Azure.Storage.Blobs (>= 12.25.1)
- ISL.NetFramework (>= 1.0.5)
- ISL.NetFramework.Entity (>= 26.5.19.3)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ISL.NetFramework.FileStorage:
| Package | Downloads |
|---|---|
|
ISL.NetFramework.Communication.Driver
Single-package communication driver that unifies Email, SMS, and File Storage access for ISL services. |
GitHub repositories
This package is not used by any popular GitHub repositories.