How can I configure IIS settings in ASP.NET Core? #57612
-
DescriptionThe MS Learn documentation page "In-process hosting with IIS and ASP.NET Core" appears to provide incorrect information in section "Application configuration": builder.Services.Configure<IISServerOptions>(options =>
{
options.AutomaticAuthentication = false;
}); The How can I configure IIS module settings in ASP.NET Core 8++? |
Beta Was this translation helpful? Give feedback.
Answered by
martincostello
Aug 30, 2024
Replies: 1 comment 3 replies
-
Do you have the |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
SetTrend
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you have the
Microsoft.Extensions.Options
(or it might beMicrosoft.Extensions.DependencyInjection
) namespace in scope in yourusing
s?