https://github.com/liteobject/playing-with-configurations
https://github.com/liteobject/playing-with-configurations
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/liteobject/playing-with-configurations
- Owner: LiteObject
- Created: 2023-02-02T23:24:04.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T23:39:05.000Z (about 3 years ago)
- Last Synced: 2024-12-29T18:22:52.081Z (over 1 year ago)
- Language: C#
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)