Skip to content

Latest commit

 

History

History

README.md

SimpleModule.Storage.Azure

NuGet

Azure Blob Storage provider for SimpleModule.Storage.

Installation

dotnet add package SimpleModule.Storage.Azure

Quick Start

builder.Services.AddAzureBlobStorage(options =>
{
    options.ConnectionString = "your-connection-string";
    options.ContainerName = "uploads";
});

Key Features

  • Upload, download, list, and delete files in Azure Blob containers
  • Implements IStorageProvider from SimpleModule.Storage
  • Azure SDK integration via Azure.Storage.Blobs

Links