From 8249134911b551be74242abdca80276f173ccaae Mon Sep 17 00:00:00 2001 From: Chris R Date: Mon, 8 Aug 2016 13:08:42 -0700 Subject: [PATCH] React to WebListener AllowAnonymous API changes for Standalone. --- src/MusicStore.Standalone/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MusicStore.Standalone/Program.cs b/src/MusicStore.Standalone/Program.cs index e915ca4b57..3a4c4c6667 100644 --- a/src/MusicStore.Standalone/Program.cs +++ b/src/MusicStore.Standalone/Program.cs @@ -32,6 +32,7 @@ namespace MusicStore.Standalone builder.UseWebListener(options => { options.Listener.AuthenticationManager.AuthenticationSchemes = AuthenticationSchemes.NTLM; + options.Listener.AuthenticationManager.AllowAnonymous = false; }); } else