Skip to content

Configuration

Tore Nestenius edited this page Nov 22, 2024 · 2 revisions

ASP.NET Core Configuration Tool

Overview

This tool provides a comprehensive view of the configuration data detected and used by ASP.NET Core. It combines values from all configuration providers, allowing you to inspect and debug your application's configuration setup effectively.

Purpose

This tool helps you:

  • List all configuration keys and values from the combined configuration sources.
  • View details about the configuration providers and the keys they contribute.
  • Inspect the DebugView to understand how configuration values are resolved and overridden.

Features

1. List of Combined Configuration Values

  • Displays a table of all configuration keys and their final resolved values.
  • This includes values gathered from all configuration providers, such as:
    • appsettings.json
    • Environment variables
    • Azure App Service settings
    • Command-line arguments

2. List of Configuration Providers

  • Shows each configuration provider used by ASP.NET Core and the keys contributed by it.
  • Provides a breakdown of the values provided by each configuration source.

3. DebugView

  • Offers a detailed, hierarchical view of the configuration system, showing the sources and overrides for each configuration key.
  • Helps identify conflicts or missing values in your configuration.
Clone this wiki locally