diff --git a/aspnetcore/fundamentals/configuration/index.md b/aspnetcore/fundamentals/configuration/index.md index 8b793527dbe7..7427800d5427 100644 --- a/aspnetcore/fundamentals/configuration/index.md +++ b/aspnetcore/fundamentals/configuration/index.md @@ -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. + ### Default host configuration sources