Aspire.Azure.Storage.Blobs 13.0.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspire.Azure.Storage.Blobs --version 13.0.0
                    
NuGet\Install-Package Aspire.Azure.Storage.Blobs -Version 13.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="Aspire.Azure.Storage.Blobs" Version="13.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aspire.Azure.Storage.Blobs" Version="13.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Aspire.Azure.Storage.Blobs" />
                    
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 Aspire.Azure.Storage.Blobs --version 13.0.0
                    
#r "nuget: Aspire.Azure.Storage.Blobs, 13.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.
#:package Aspire.Azure.Storage.Blobs@13.0.0
                    
#: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=Aspire.Azure.Storage.Blobs&version=13.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Aspire.Azure.Storage.Blobs&version=13.0.0
                    
Install as a Cake Tool

Aspire.Azure.Storage.Blobs

Registers a BlobServiceClient service as a singleton in the DI container for connecting to Azure Storage Blobs. Enables corresponding health checks, logging and telemetry.

Getting started

Prerequisites

Install the package

Install the Aspire Azure Storage Blobs library with NuGet:

dotnet add package Aspire.Azure.Storage.Blobs

Usage example

In the AppHost.cs file of your project, call the AddAzureBlobClient extension method to register a BlobServiceClient for use via the dependency injection container. The method takes a connection name parameter.

builder.AddAzureBlobServiceClient("blobs");

You can then retrieve the BlobServiceClient instance using dependency injection. For example, to retrieve the client from a Web API controller:

private readonly BlobServiceClient _client;

public ProductsController(BlobServiceClient client)
{
    _client = client;
}

See the Azure.Storage.Blobs documentation for examples on using the BlobServiceClient.

Configuration

The Aspire Azure Storage Blobs library provides multiple options to configure the Azure Storage Blob connection based on the requirements and conventions of your project. Note that either a ServiceUri or a ConnectionString is a required to be supplied.

Use a connection string

When using a connection string from the ConnectionStrings configuration section, you can provide the name of the connection string when calling builder.AddAzureBlobServiceClient():

builder.AddAzureBlobServiceClient("blobsConnectionName");

And then the connection information will be retrieved from the ConnectionStrings configuration section. Two connection formats are supported:

Service URI

The recommended approach is to use a ServiceUri, which works with the AzureStorageBlobsSettings.Credential property to establish a connection. If no credential is configured, the DefaultAzureCredential is used.

{
  "ConnectionStrings": {
    "blobsConnectionName": "https://{account_name}.blob.core.windows.net/"
  }
}
Connection string

Alternatively, an Azure Storage connection string can be used.

{
  "ConnectionStrings": {
    "blobsConnectionName": "AccountName=myaccount;AccountKey=myaccountkey"
  }
}

Use configuration providers

The Aspire Azure Storage Blobs library supports Microsoft.Extensions.Configuration. It loads the AzureStorageBlobsSettings and BlobClientOptions from configuration by using the Aspire:Azure:Storage:Blobs key. Example appsettings.json that configures some of the options:

{
  "Aspire": {
    "Azure": {
      "Storage": {
        "Blobs": {
          "DisableHealthChecks": true,
          "DisableTracing": false,
          "ClientOptions": {
            "Diagnostics": {
              "ApplicationId": "myapp"
            }
          }
        }
      }
    }
  }
}

Use inline delegates

You can also pass the Action<AzureStorageBlobsSettings> configureSettings delegate to set up some or all the options inline, for example to disable health checks from code:

builder.AddAzureBlobServiceClient("blobs", settings => settings.HealthChecks = false);

You can also setup the BlobClientOptions using the optional Action<IAzureClientBuilder<BlobServiceClient, BlobClientOptions>> configureClientBuilder parameter of the AddAzureBlobClient method. For example, to set the first part of "User-Agent" headers for all requests issues by this client:

builder.AddAzureBlobServiceClient("blobs", configureClientBuilder: clientBuilder => clientBuilder.ConfigureOptions(options => options.Diagnostics.ApplicationId = "myapp"));

AppHost extensions

In your AppHost project, install the Aspire Azure Storage Hosting library with NuGet:

dotnet add package Aspire.Hosting.Azure.Storage

Then, in the AppHost.cs file of AppHost, add a Blob Storage connection and consume the connection using the following methods:

var blobs = builder.ExecutionContext.IsPublishMode
    ? builder.AddAzureStorage("storage").AddBlobs("blobs")
    : builder.AddConnectionString("blobs");

var myService = builder.AddProject<Projects.MyService>()
                       .WithReference(blobs);

The AddBlobs method adds an Azure Storage blob service resource to the builder. Or AddConnectionString method can be used be used to read connection information from the AppHost's configuration (for example, from "user secrets") under the ConnectionStrings:blobs config key. The WithReference method passes that connection information into a connection string named blobs in the MyService project. In the Program.cs file of MyService, the connection can be consumed using:

builder.AddAzureBlobServiceClient("blobs");

Additional documentation

Feedback & contributing

https://github.com/dotnet/aspire

Product 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 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 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 (6)

Showing the top 5 NuGet packages that depend on Aspire.Azure.Storage.Blobs:

Package Downloads
Hexalith.Infrastructure.AspireService.Hosting

Hexalith is a set of libraries to build a micro-service architecture.

Sekiban.Aspire.Infrastructure.Cosmos

Sekiban - Event Sourcing Framework Cosmos Aspire Connector

Nabs.Launchpad.Core.Silo

Package Description

Hexalith.NetAspire.Hosting

Hexalith is a set of libraries to build an application with micro-service architecture.

AspireToolKit.Hosting.Testing.Extensions

Extensions for .NET Aspire integration testing to simplify and improve the user experience when testing.

GitHub repositories (5)

Showing the top 5 popular GitHub repositories that depend on Aspire.Azure.Storage.Blobs:

Repository Stars
dotnet/aspire-samples
erwinkramer/bank-api
The Bank API is a design reference project suitable to bootstrap development for a compliant and modern API.
foxminchan/BookWorm
The practical implementation of Aspire using Microservices, AI-Agents
platformplatform/PlatformPlatform
A platform designed for building enterprise-grade, multi-tenant products using Azure, .NET, React, TypeScript, Infrastructure as Code, etc.
J-Tech-Japan/Sekiban
Sekiban - an Opinionated Event Sourcing and CQRS Framework using C#. It can store data into Azure Cosmos DB, AWS Dynamo DB or Postgres
Version Downloads Last Updated
13.0.1 412 11/26/2025
13.0.0 29,740 11/11/2025
9.5.2 63,507 10/23/2025
9.5.1 74,851 10/3/2025
9.5.0 33,604 9/25/2025
9.4.2 89,634 9/2/2025
9.4.1 107,050 8/12/2025
9.4.0 60,613 7/29/2025
9.3.1 164,366 6/10/2025
9.3.0 110,260 5/19/2025
9.2.1 83,148 4/24/2025 9.2.1 is deprecated because it is no longer maintained.
9.2.0 66,360 4/10/2025 9.2.0 is deprecated because it is no longer maintained.
9.1.0 119,509 2/25/2025 9.1.0 is deprecated because it is no longer maintained.
9.0.0 202,558 11/12/2024 9.0.0 is deprecated because it is no longer maintained.
9.0.0-rc.1.24511.1 5,936 10/15/2024 9.0.0-rc.1.24511.1 is deprecated because it is no longer maintained.
8.2.2 45,479 10/24/2024 8.2.2 is deprecated because it is no longer maintained.
8.2.1 48,532 9/26/2024 8.2.1 is deprecated because it is no longer maintained.
8.2.0 58,745 8/29/2024 8.2.0 is deprecated because it is no longer maintained.
8.1.0 34,128 7/23/2024 8.1.0 is deprecated because it is no longer maintained.
8.0.2 30,031 6/28/2024 8.0.2 is deprecated because it is no longer maintained.
8.0.1 37,201 5/21/2024 8.0.1 is deprecated because it is no longer maintained.
8.0.0 13,866 5/21/2024 8.0.0 is deprecated because it is no longer maintained.
8.0.0-preview.7.24251.11 3,226 5/7/2024 8.0.0-preview.7.24251.11 is deprecated because it is no longer maintained.
8.0.0-preview.6.24214.1 8,204 4/23/2024 8.0.0-preview.6.24214.1 is deprecated because it is no longer maintained.
8.0.0-preview.5.24201.12 5,324 4/9/2024 8.0.0-preview.5.24201.12 is deprecated because it is no longer maintained.
8.0.0-preview.4.24156.9 3,815 3/12/2024 8.0.0-preview.4.24156.9 is deprecated because it is no longer maintained.
8.0.0-preview.3.24105.21 6,597 2/13/2024 8.0.0-preview.3.24105.21 is deprecated because it is no longer maintained.
8.0.0-preview.2.23619.3 3,492 12/20/2023 8.0.0-preview.2.23619.3 is deprecated because it is no longer maintained.
8.0.0-preview.1.23557.2 2,233 11/14/2023 8.0.0-preview.1.23557.2 is deprecated because it is no longer maintained.