From 6ae610e8bc5532a135571d7a12c1aa5c3ac963c2 Mon Sep 17 00:00:00 2001 From: Chris R Date: Mon, 8 Aug 2016 09:51:57 -0700 Subject: [PATCH] React to WebListener AllowAnonymous API change. --- src/MusicStore/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MusicStore/Program.cs b/src/MusicStore/Program.cs index f65328faef..bee570c0e7 100644 --- a/src/MusicStore/Program.cs +++ b/src/MusicStore/Program.cs @@ -32,6 +32,7 @@ namespace MusicStore builder.UseWebListener(options => { options.Listener.AuthenticationManager.AuthenticationSchemes = AuthenticationSchemes.NTLM; + options.Listener.AuthenticationManager.AllowAnonymous = false; }); } else