InnerDrive.Azure 5.3.1495

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

Inner Drive Extensible Architeture

The Inner Drive Extensible Architecture implements common .NET development situations including time zones, money, measurements and conversions, and Microsoft Azure features.

InnerDrive.Azure

Features

  • Helper classes for Azure Blob Storage
  • Helper classes to use Azure Key Vault features
  • Helper classes to use Azure Table Storage features
  • Azure support for InnerDrive.TimeZones features

Prerequisites

This package runs on .NET 10, with dependencies on InnerDrive.Core and InnerDrive.TimeZones.

To use this package, you'll also need a Microsoft Azure subscription.

Usage

The Inner Drive Technology website has a full SDK and example code. We also have a demo weather site that uses all the IDEA components.

Azure Blob storage for IANA Time Zone files

To use the AzureTzInfoFileReader with the IANA Time Zone database, add the following to your appSettings.config:

{
	"storageAccountKey": "your storage account key",
	"storageAccountName": "your storage account name",
	"storageConnectionString": "your storage account connection string",
	"timeZoneSettings": {
		"defaultTimeZoneHomeZone": "America/Chicago",
		"timeZoneBlobName": "timezones"
	}
}

Note that you can use either the storage account connection string or the key/name pair.

Azure Key Vault helper classes

To use the AzureKeyVaultXProvider classes (Crypto, Key, and Secret), add the following to your appSettings.config:

{
	"keyVaultSecretProviderThrowExceptions": true,
	"keyVaultSecretProviderTrace": true,
	"keyVaultTenantId": "your tenant ID",
	"keyVaultUrl": "your key vault FQDN"
}

Azure Table Storage helper classes

To use the AzureTableStore and AzureTableSettingStore classes, add the following to your appSettings.config:

{
	"settingsTableName": "the table name for your settings table",
	"storageAccountKey": "your storage account key",
	"storageAccountName": "your storage account name",
	"storageTablesUri": "your tables URI",
	"storageConnectionString": "your storage account connection string"
}

Feedback

Comments or questions? Send feedback

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

Showing the top 1 NuGet packages that depend on InnerDrive.Azure:

Package Downloads
InnerDrive.Logging

Provides logging tools for Inner Drive Technology applications

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.3.1533 47 7/15/2026
5.3.1531 50 7/15/2026
5.3.1519 114 7/1/2026
5.3.1508 120 6/25/2026
5.3.1498 132 6/18/2026
5.3.1495 126 6/17/2026
5.3.1263 670 11/21/2025
5.2.1247.1 348 10/12/2025
5.2.1235.1 234 10/5/2025
5.2.1076.1 648 2/14/2025
5.2.989.1 392 11/2/2024
5.2.938.1 418 9/7/2024
5.1.926.1 251 9/2/2024
5.1.871.1 464 6/6/2024
5.1.854.1 347 5/21/2024
5.1.844.1 453 3/27/2024
Loading failed

Added custom table name support to AzureSettingsTableStore class