Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions aspnetcore/fundamentals/configuration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ var builder = WebApplication.CreateBuilder(args);
1. [appsettings.json](#appsettingsjson) using the [JSON configuration provider](#jcp).
1. A fallback to the host configuration described in the [next section](#host).

Note: `WebApplication.CreateBuilder(args)` should only be called once in apps relying on IIS in-process hosting.<!--Delete this note in the .NET 10 version of the article. See <https://github.com/dotnet/aspnetcore/pull/59910>. -->

<a name="host"></a>

### Default host configuration sources
Expand Down
Loading