Microsoft.Orleans.GrainDirectory.AzureStorage 10.1.0

Prefix Reserved
dotnet add package Microsoft.Orleans.GrainDirectory.AzureStorage --version 10.1.0
                    
NuGet\Install-Package Microsoft.Orleans.GrainDirectory.AzureStorage -Version 10.1.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="Microsoft.Orleans.GrainDirectory.AzureStorage" Version="10.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.Orleans.GrainDirectory.AzureStorage" Version="10.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.Orleans.GrainDirectory.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 Microsoft.Orleans.GrainDirectory.AzureStorage --version 10.1.0
                    
#r "nuget: Microsoft.Orleans.GrainDirectory.AzureStorage, 10.1.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 Microsoft.Orleans.GrainDirectory.AzureStorage@10.1.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=Microsoft.Orleans.GrainDirectory.AzureStorage&version=10.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Microsoft.Orleans.GrainDirectory.AzureStorage&version=10.1.0
                    
Install as a Cake Tool

Microsoft Orleans Grain Directory for Azure Storage

Introduction

Microsoft Orleans Grain Directory for Azure Storage provides a grain directory implementation using Azure Storage. The grain directory is used to locate active grain instances across the cluster, and this package allows Orleans to store that information in Azure Storage.

Getting Started

To use this package, install it via NuGet:

dotnet add package Microsoft.Orleans.GrainDirectory.AzureStorage

Example - Configuring Azure Storage Grain Directory

using Microsoft.Extensions.Hosting;
using Orleans.Hosting;

var builder = Host.CreateApplicationBuilder(args)
    .UseOrleans(siloBuilder =>
    {
        siloBuilder
            .UseLocalhostClustering()
            // Configure Azure Storage as grain directory
            .UseAzureStorageGrainDirectoryAsDefault(options =>
            {
                options.ConnectionString = "YOUR_AZURE_STORAGE_CONNECTION_STRING";
                options.TableName = "GrainDirectory";
            });
    });

// Run the host
await builder.RunAsync();

Documentation

For more comprehensive documentation, please refer to:

Feedback & Contributing

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 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.

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
10.1.0 2,409 4/14/2026
10.0.1 13,997 2/7/2026
10.0.0 1,731 1/20/2026
10.0.0-rc.2 77 12/31/2025
9.2.1 11,486 7/16/2025
9.2.0 242 7/14/2025
9.2.0-preview3 339 6/10/2025
9.2.0-preview2 187 6/4/2025
9.2.0-preview1 186 4/4/2025
9.1.2 2,394 2/13/2025
9.0.1 1,556 11/23/2024
9.0.0 588 11/14/2024
3.8.1-beta1 84 4/24/2026
3.8.0-preview5 275 5/12/2025
3.8.0-preview3 243 4/8/2025
3.8.0-preview2 212 4/4/2025
3.8.0-preview1 228 3/31/2025
3.8.0-beta1 200 5/6/2025
Loading failed