Foundatio.AzureStorage
13.0.2
Prefix Reserved
dotnet add package Foundatio.AzureStorage --version 13.0.2
NuGet\Install-Package Foundatio.AzureStorage -Version 13.0.2
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="Foundatio.AzureStorage" Version="13.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Foundatio.AzureStorage" Version="13.0.2" />Directory.Packages.props
<PackageReference Include="Foundatio.AzureStorage" />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 Foundatio.AzureStorage --version 13.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Foundatio.AzureStorage, 13.0.2"
#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 Foundatio.AzureStorage@13.0.2
#: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=Foundatio.AzureStorage&version=13.0.2Install as a Cake Addin
#tool nuget:?package=Foundatio.AzureStorage&version=13.0.2Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
FoundatioFoundatio
Build status NuGet Version feedz.io Discord
Pluggable foundation blocks for building loosely coupled distributed apps.
β¨ Why Choose Foundatio?
- π Pluggable implementations - Swap Redis, Azure, AWS, or in-memory with no code changes
- π§ͺ Developer friendly - In-memory implementations for fast local development and testing
- π DI native - Built for Microsoft.Extensions.DependencyInjection
- π― Interface-first - Code against abstractions, not implementations
- β‘ Production ready - Battle-tested in high-scale applications
- π Consistent APIs - Same patterns across caching, queues, storage, and more
π§± Core Building Blocks
| Feature | Description |
|---|---|
| Caching | In-memory, Redis, and hybrid caching with automatic invalidation |
| Queues | Reliable message queuing with Redis, Azure, AWS SQS |
| Locks | Distributed locking and throttling |
| Messaging | Pub/sub with Redis, RabbitMQ, Kafka, Azure Service Bus |
| Jobs | Background job processing with queue integration |
| File Storage | Unified file API for disk, S3, Azure Blob, and more |
| Resilience | Retry policies, circuit breakers, and timeouts |
π Quick Start
dotnet add package Foundatio.AzureStorage
// Queuing
IQueue<WorkItem> queue = new AzureStorageQueue<WorkItem>(o => o
.ConnectionString("UseDevelopmentStorage=true"));
await queue.EnqueueAsync(new WorkItem { Data = "Hello" });
var entry = await queue.DequeueAsync();
// File Storage
IFileStorage storage = new AzureFileStorage(o => o
.ConnectionString("UseDevelopmentStorage=true")
.ContainerName("my-container"));
await storage.SaveFileAsync("docs/readme.txt", "Hello World");
π¦ Provider Implementations
| Provider | Caching | Queues | Messaging | Storage | Locks |
|---|---|---|---|---|---|
| In-Memory | β | β | β | β | β |
| Redis | β | β | β | β | β |
| Azure Storage | β | β | |||
| Azure Service Bus | β | β | |||
| AWS (S3/SQS/SNS) | β | β | β | ||
| RabbitMQ | β | ||||
| Kafka | β | ||||
| Minio | β | ||||
| Aliyun | β | ||||
| SFTP | β |
π Learn More
Core Features
- Getting Started - Installation and setup
- Caching - In-memory, Redis, and hybrid caching with invalidation
- Queues - FIFO message delivery with lock renewal and retry policies
- Locks - Distributed locking with null handling patterns
- Messaging - Pub/sub with size limits and notification patterns
- File Storage - Unified file API across providers
- Jobs - Background job processing and hosted service integration
Advanced Topics
- Resilience - Retry policies, circuit breakers, and timeouts
- Serialization - Serializer configuration and performance
- Dependency Injection - DI setup and patterns
- Configuration - Options and settings
π¦ CI Packages (Feedz)
Want the latest CI build before it hits NuGet? Add the Feedz source and install the pre-release version:
dotnet nuget add source https://f.feedz.io/foundatio/foundatio/nuget -n foundatio-feedz
dotnet add package Foundatio.AzureStorage --prerelease
Or add to your NuGet.config:
<configuration>
<packageSources>
<add key="foundatio-feedz" value="https://f.feedz.io/foundatio/foundatio/nuget" />
</packageSources>
<packageSourceMapping>
<packageSource key="foundatio-feedz">
<package pattern="Foundatio.*" />
</packageSource>
</packageSourceMapping>
</configuration>
π€ Contributing
Contributions are welcome! Please feel free to submit a Pull Request. See our documentation for development guidelines.
Development Setup:
- Clone the repository
- Open
Foundatio.AzureStorage.slnxin Visual Studio or VS Code - Run
dotnet buildto build - Run
dotnet testto run tests
π License
Apache 2.0 License
Thanks to all the people who have contributed
| Product | Versions 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. net9.0 was computed. 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 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
- Azure.Storage.Blobs (>= 12.29.0)
- Azure.Storage.Queues (>= 12.27.0)
- Foundatio (>= 13.0.2)
-
net8.0
- Azure.Storage.Blobs (>= 12.29.0)
- Azure.Storage.Queues (>= 12.27.0)
- Foundatio (>= 13.0.2)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Foundatio.AzureStorage:
| Package | Downloads |
|---|---|
|
SoftwarePioniere.Fx.Hosting
Package Description |
|
|
ReCloud.Business.Lgm
ReCloud Business Class Library |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Foundatio.AzureStorage:
| Repository | Stars |
|---|---|
|
exceptionless/Exceptionless
Exceptionless application
|
| Version | Downloads | Last Updated |
|---|---|---|
| 13.0.2 | 293 | 6/25/2026 |
| 13.0.1 | 5,472 | 5/9/2026 |
| 13.0.0 | 2,045 | 4/25/2026 |
| 13.0.0-beta6 | 211 | 4/15/2026 |
| 13.0.0-beta3 | 203 | 2/14/2026 |
| 13.0.0-beta1 | 320 | 1/12/2026 |
| 12.0.0 | 28,628 | 8/20/2025 |
| 11.1.0 | 7,377 | 5/9/2025 |
| 11.0.8 | 12,948 | 1/31/2025 |
| 11.0.6 | 6,106 | 11/26/2024 |
| 11.0.5 | 2,497 | 9/28/2024 |
| 11.0.4 | 286 | 9/27/2024 |
| 11.0.2 | 21,990 | 8/31/2024 |
| 11.0.0 | 284 | 8/31/2024 |
| 10.7.1 | 28,742 | 3/27/2024 |
| 10.7.0 | 7,333 | 1/5/2024 |
| 10.6.1 | 10,984 | 6/23/2023 |
| 10.6.0 | 7,505 | 1/1/2023 |
| 10.5.0 | 18,916 | 5/18/2022 |
| 10.4.0 | 4,860 | 3/8/2022 |
Loading failed