From 1132cad70b1defd3bddfbd74034ce9f36b87d95f Mon Sep 17 00:00:00 2001 From: Pavel Krymets Date: Thu, 11 Oct 2018 10:54:00 -0700 Subject: [PATCH] public const string AuthenticationScheme (#1496) --- .../{IISDefaults.cs => IISServerDefaults.cs} | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) rename src/Microsoft.AspNetCore.Server.IIS/{IISDefaults.cs => IISServerDefaults.cs} (60%) diff --git a/src/Microsoft.AspNetCore.Server.IIS/IISDefaults.cs b/src/Microsoft.AspNetCore.Server.IIS/IISServerDefaults.cs similarity index 60% rename from src/Microsoft.AspNetCore.Server.IIS/IISDefaults.cs rename to src/Microsoft.AspNetCore.Server.IIS/IISServerDefaults.cs index 5be4a086f8..5ac1296597 100644 --- a/src/Microsoft.AspNetCore.Server.IIS/IISDefaults.cs +++ b/src/Microsoft.AspNetCore.Server.IIS/IISServerDefaults.cs @@ -5,8 +5,6 @@ namespace Microsoft.AspNetCore.Server.IIS { public class IISServerDefaults { - public static readonly string AuthenticationScheme = "Windows"; - public const string Negotiate = "Negotiate"; - public const string Ntlm = "NTLM"; + public const string AuthenticationScheme = "Windows"; } }