CodeLogic.StorageS3
3.2.3
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 CodeLogic.StorageS3 --version 3.2.3
NuGet\Install-Package CodeLogic.StorageS3 -Version 3.2.3
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="CodeLogic.StorageS3" Version="3.2.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CodeLogic.StorageS3" Version="3.2.3" />
<PackageReference Include="CodeLogic.StorageS3" />
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 CodeLogic.StorageS3 --version 3.2.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CodeLogic.StorageS3, 3.2.3"
#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 CodeLogic.StorageS3@3.2.3
#: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=CodeLogic.StorageS3&version=3.2.3
#tool nuget:?package=CodeLogic.StorageS3&version=3.2.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CodeLogic.StorageS3
S3-compatible object storage library for CodeLogic 3. Works with Amazon S3, Cloudflare R2, MinIO, and any S3-compatible provider. Built on AWSSDK.S3.
Install
dotnet add package CodeLogic.StorageS3
Quick Start
await Libraries.LoadAsync<StorageS3Library>();
var s3 = Libraries.Get<StorageS3Library>();
var service = s3.DefaultService;
// Upload
using var stream = File.OpenRead("photo.webp");
var url = await service.PutObjectAsync("my-bucket", "uploads/photo.webp", stream, "image/webp");
// Download
var data = await service.GetObjectAsync("my-bucket", "uploads/photo.webp");
// Delete
await service.DeleteObjectAsync("my-bucket", "uploads/photo.webp");
// List objects
var objects = await service.ListObjectsAsync("my-bucket", prefix: "uploads/");
Features
- Upload / Download / Delete — standard object operations with stream support
- Multiple Connections — named connection IDs for multi-bucket or multi-provider setups
- Public URLs — configurable public URL prefix for CDN-served content
- Presigned URLs — generate temporary access URLs
- Cloudflare R2 — first-class support with
forcePathStyleanddisablePayloadSigning - Health Checks — verifies bucket accessibility
Configuration
Auto-generated at data/codelogic/Libraries/CL.StorageS3/config.storages3.json:
{
"enabled": true,
"connections": [
{
"connectionId": "Default",
"accessKey": "your-access-key",
"secretKey": "your-secret-key",
"serviceUrl": "https://xxx.r2.cloudflarestorage.com",
"publicUrl": "https://cdn.example.com",
"region": "auto",
"defaultBucket": "my-bucket",
"forcePathStyle": true,
"useHttps": true,
"disablePayloadSigning": true
}
]
}
Documentation
Requirements
- CodeLogic 3.x | .NET 10
License
MIT — see LICENSE
| 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.
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 |
|---|---|---|
| 4.5.2 | 90 | 5/24/2026 |
| 4.5.1 | 106 | 5/24/2026 |
| 4.5.1-preview.56 | 83 | 5/24/2026 |
| 4.4.2-preview.53 | 45 | 5/24/2026 |
| 4.4.1 | 88 | 5/24/2026 |
| 4.0.5 | 95 | 5/15/2026 |
| 4.0.4 | 99 | 5/9/2026 |
| 4.0.3 | 94 | 5/9/2026 |
| 3.3.1 | 674 | 4/18/2026 |
| 3.3.0 | 99 | 4/18/2026 |
| 3.2.11 | 118 | 4/18/2026 |
| 3.2.10 | 103 | 4/18/2026 |
| 3.2.9 | 97 | 4/18/2026 |
| 3.2.8 | 90 | 4/18/2026 |
| 3.2.7 | 91 | 4/18/2026 |
| 3.2.6 | 92 | 4/18/2026 |
| 3.2.5 | 91 | 4/18/2026 |
| 3.2.4 | 95 | 4/17/2026 |
| 3.2.3 | 101 | 4/17/2026 |
| 3.2.2 | 160 | 4/17/2026 |
Loading failed