From 96d282319dd512e6c8b992536d850ac812fe0730 Mon Sep 17 00:00:00 2001 From: Ryan Brandenburg Date: Thu, 4 Apr 2019 09:57:27 -0700 Subject: [PATCH] Remove extra newline (#9051) --- .../Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Startup.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Startup.cs b/src/ProjectTemplates/Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Startup.cs index 26d359acc7..2006cec1fb 100644 --- a/src/ProjectTemplates/Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Startup.cs +++ b/src/ProjectTemplates/Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Startup.cs @@ -72,7 +72,6 @@ namespace Company.WebApplication1 services.AddDefaultIdentity() .AddDefaultUI(UIFramework.Bootstrap4) .AddEntityFrameworkStores(); - #elif (OrganizationalAuth) services.AddAuthentication(AzureADDefaults.AuthenticationScheme) .AddAzureAD(options => Configuration.Bind("AzureAd", options));