From 86555d02e4a70e69f3f4c2e3ecc9e8668ab94fe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Tue, 7 Nov 2023 16:01:51 +0100 Subject: [PATCH] Update the ASP.NET 4.x server sandbox to suppress host authentication --- sandbox/OpenIddict.Sandbox.AspNet.Server/Startup.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/sandbox/OpenIddict.Sandbox.AspNet.Server/Startup.cs b/sandbox/OpenIddict.Sandbox.AspNet.Server/Startup.cs index ea9c62fc..6d44400d 100644 --- a/sandbox/OpenIddict.Sandbox.AspNet.Server/Startup.cs +++ b/sandbox/OpenIddict.Sandbox.AspNet.Server/Startup.cs @@ -160,6 +160,7 @@ namespace OpenIddict.Sandbox.AspNet.Server }; configuration.MapHttpAttributeRoutes(); + configuration.SuppressDefaultHostAuthentication(); // Register the Autofac Web API integration and Web API middleware. app.UseAutofacWebApi(configuration);