.net

Add config sections and values in Azure Function Configuration

Most developers are familiar with defining configuration sections in appsettings.json or a json file, and then read it through IConfiguration. However, Azure Functions uses environment variables. Though there are ways you can use a json file in azure functions, it will hamper the flexibility of configuring azure functions. Environment variables are stored as a key-value […]

Scroll to top