FriendlyEnvars 1.0.3

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

FriendlyEnvars

<img src="resources/icon-1.png" alt="" width="60" height="60" align="left" style="margin-right: 16px;" title="FriendlyEnvars Logo">

CI

Simple, type-safe environment variable configuration for .NET


👀 Overview

Do you need to configure your .NET app purely via environment variables?

FriendlyEnvars lets you bind them directly to strongly typed configuration classes.

  • Clean, explicit configuration mapping using the [Envar] attribute.
  • Automatic type conversion, validation, and integration with the IOptions<T> pattern.
  • Environment variables are bound once, at startup.

Ideal for: cloud-native apps, containerized deployments, microservices, or anywhere configuration comes from the environment.


📝 Why FriendlyEnvars?

  • Type safety: Eliminates runtime configuration errors by mapping environment variables directly to typed properties.
  • Built-in validation: Leverages data annotation attributes like [Required], [Range], etc. automatically.
  • No boilerplate: No need to write manual parsing, error handling, or default value logic.
  • Works with IOptions: Smooth experience for modern .NET dependency injection patterns.
  • Explicit & Discoverable: Your configuration surface is crystal clear in the code.

🚀 Quick Start

1. Define Your Configuration Class

Annotate properties you want loaded from environment variables. Properties must have a setter (set or init):

public record DatabaseSettings
{
    [Envar("DB_HOST")]
    public string Host { get; init; } = string.Empty;

    [Envar("DB_PORT")]
    public int Port { get; init; }

    [Envar("DB_SSL_ENABLED")]
    public bool SslEnabled { get; init; } = true;

    [Envar("DB_CONNECTION_TIMEOUT")]
    public TimeSpan ConnectionTimeout { get; init; } = TimeSpan.FromSeconds(30);
}

2. Register in DI

Hook up configuration binding in your Startup.cs or DI setup:

services
    .AddOptions<DatabaseSettings>()
    .BindEnvars();

3. Add Validation (Optional)

Validate environment variables using standard data annotation attributes:

services
    .AddOptions<DatabaseSettings>()
    .BindEnvars()
    .ValidateDataAnnotations()
    .ValidateOnStart();

4. Inject and Use Your Config

public class MyService
{
    public MyService(IOptions<DatabaseSettings> settings)
    {
        var dbSettings = settings.Value;
    }
}

💡 Features

Supported Types:

  • string, char, bool
  • Numeric types: byte, sbyte, short, ushort, int, uint, long, ulong, float, double, decimal
  • Guid, Uri, TimeSpan, DateTime, DateTimeOffset, DateOnly, TimeOnly
  • Enum (case-insensitive)
  • Nullable versions of all above types
  • Any type with a TypeConverter

Additional Features:

  • Automatic conversion using invariant culture (by default) or custom culture.
  • Custom parsing recipes via IEnvarPropertyBinder interface.
  • Validation using familiar DataAnnotations attributes.

⚙️ Advanced Usage

Parsing with a Specific Culture

By default, conversions use CultureInfo.InvariantCulture for predictable parsing. To handle locale-specific formats:

using System.Globalization;

services.AddOptions<DatabaseSettings>()
    .BindEnvars(settings => {
        settings.UseCulture(CultureInfo.GetCultureInfo("en-US"));
    });
Custom Type Conversion

For complex types, implement IEnvarPropertyBinder to control parsing:

using System;
using System.Collections.Generic;
using System.Globalization;

public record ConnectionString
{
    public string Host { get; init; } = string.Empty;
    public int Port { get; init; }
    public string User { get; init; } = string.Empty;
    public string Password { get; init; } = string.Empty;
}

public class CustomEnvarPropertyBinder : IEnvarPropertyBinder
{
    private readonly DefaultEnvarPropertyBinder _defaultBinder = new();

    public object? Convert(string value, Type targetType, CultureInfo culture)
    {
        if (targetType == typeof(ConnectionString))
        {
            return ParseConnectionString(value);
        }

        return _defaultBinder.Convert(value, targetType, culture);
    }

    private static ConnectionString ParseConnectionString(string connectionString)
    {
        var pairs = connectionString.Split(';', StringSplitOptions.RemoveEmptyEntries);
        var values = new Dictionary<string, string>();

        foreach (var pair in pairs)
        {
            var parts = pair.Split('=', 2);
            if (parts.Length == 2)
            {
                values[parts[0].Trim()] = parts[1].Trim();
            }
        }

        return new ConnectionString
        {
            Host = values.GetValueOrDefault("Host", "localhost"),
            Port = int.Parse(values.GetValueOrDefault("Port", "5432")),
            User = values.GetValueOrDefault("User", ""),
            Password = values.GetValueOrDefault("Password", "")
        };
    }
}

Usage with environment variable CONNECTION_STRING=Host=localhost;Port=5432;User=Joe;Password=Joe12:

public record DatabaseSettings
{
    [Envar("CONNECTION_STRING")]
    public ConnectionString Connection { get; init; } = new();
}

Then, configure the binder:

services.AddOptions<DatabaseSettings>()
    .BindEnvars(settings =>
    {
        settings.UseCustomEnvarPropertyBinder(new CustomEnvarPropertyBinder());
    });
Working with IOptionsSnapshot and IOptionsMonitor

By default, IOptionsSnapshot<T> and IOptionsMonitor<T> are enabled and will always reflect the values from app startup. Environment variable configs do not refresh at runtime.

You can disable support for IOptionsSnapshot<T> and IOptionsMonitor<T> if you want to ensure only IOptions<T> is used:

services.AddOptions<DatabaseSettings>()
    .BindEnvars(settings =>
    {
        settings
            .BlockOptionsSnapshot()
            .BlockOptionsMonitor();
    });

⚠️ Limitations

  • No runtime refresh: environment variables are read once on application startup.
  • IOptionsSnapshot and IOptionsMonitor are enabled by default as read-only views, but can be disabled if needed.

With FriendlyEnvars, configuration is easy, explicit, and safe.

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 was computed.  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
1.0.3 126 8/10/2025