An open API service indexing awesome lists of open source software.

https://github.com/liteobject/playing-with-configurations


https://github.com/liteobject/playing-with-configurations

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Playing with Configurations
## Application configuration in ASP.NET Core is performed using one or more configuration providers.
Configuration providers read configuration data from key-value pairs using a variety of configuration sources:
* Settings files, such as appsettings.json
* Environment variables
* Azure Key Vault
* Azure App Configuration
* Command-line arguments
* Custom providers, installed or created
* Directory files
* In-memory .NET objects

## Application vs Host Configuration

---
## Links
* [Configuration in ASP.NET Core](https://learn.microsoft.com/en-us/aspnet/core/fundamentals/configuration/?view=aspnetcore-7.0)
* [High-performance logging in .NET](https://learn.microsoft.com/en-us/dotnet/core/extensions/high-performance-logging)