Found 701 packages
AWS AppConfig Data is a new service that allows you to retrieve configuration deployed by AWS AppConfig. See the AppConfig user guide for more details on getting started. https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html
Provides types that support using XML configuration files (app.config). This package exists only to support migrating existing .NET Framework code that already uses System.Configuration. When writing new code, use another configuration system instead, such as Microsoft.Extensions.Configuration.
Introducing AWS AppConfig, a new service that enables customers to quickly deploy validated configurations to applications of any size in a controlled and monitored fashion.
This is the Microsoft Azure Application Configuration Service client library
Microsoft.Extensions.Configuration.AzureAppConfiguration is a configuration provider for the .NET Core framework that allows developers to use Microsoft Azure App Configuration service as a configuration source in their applications.
Feature Flags created by developers for developers with ❤️. ConfigCat lets you manage feature flags across frontend, backend, mobile, and desktop apps without (re)deploying code. % rollouts, user targeting, segmentation. Feature toggle SDKs for all main languages. Alternative to LaunchDarkly. Host yourself, or use the hosted management app at https://configcat.com. Works with .NET, .NET Core, .NET Standard
Microsoft.Azure.AppConfiguration.AspNetCore allows developers to use Microsoft Azure App Configuration service as a configuration source in their applications. This package adds additional features for ASP.NET Core applications to the existing package Microsoft.Extensions.Configuration.AzureAppConfiguration.
Microsoft.Extensions.Configuration support for App Metrics e.g. appsettings.json
Configuration classes for loggly clients. Settings are read from app.config or can be programmatically injected at runtime. See readme.md for documentation
XML configuration (System.Configuration <appSettings>) support for Serilog.
App Metrics ASP.NET Core Hosting provides extensions to configure App Metrics in an ASP.NET Core application.
This package provides a base app settings capability deserialising environment variables into IConfiguration object.
ChilliCream.Nitro.App is a collection of middleware components for HotChocolate. It includes middleware for serving static files, handling CDN requests, managing configuration files, and simplifying middleware setup. With ChilliCream.Nitro.App, developers can optimize file delivery, improve performance, and seamlessly integrate static file serving and configuration management into their applications.
Microsoft.Extensions.Configuration support for App Metrics Health e.g. appsettings.json
Cross platform Xamarin AppSettings reader
A simple way to inject strongly-typed configuration settings into your application via [web|app].config.
Polly.Extensions.Http is an extensions package containing opinionated convenience methods for configuring Polly policies to handle transient faults typical of calls through HttpClient.
App Metrics Health ASP.NET Core Hosting provides extensions to configure App Metrics Health in an ASP.NET Core application.
Microsoft.Azure.AppConfiguration.Functions.Worker allows developers to use the Microsoft Azure App Configuration service as a configuration source in their applications. This package adds additional features to the existing package Microsoft.Extensions.Configuration.AzureAppConfiguration for .NET Azure Functions running in an isolated process.
Dynamic reload config from file for Kubernetes with Config Map. Usage: static IHostBuilder CreateHostBuilder(string[] args) { return Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder(args) .ConfigureAppConfiguration((c,b)=>{ b.SetBasePath(Path.Join(AppContext.BaseDirectory,"config")) .AddJsonFile(ConfigMapFileProvider.FromRelativePath("config"), "appsettings.json"); }) .UseConsoleLifetime() ; }