// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; namespace Microsoft.AspNetCore.Builder { /// /// Identity extensions for . /// public static class BuilderExtensions { /// /// Enables ASP.NET identity for the current application. /// /// The instance this method extends. /// The instance this method extends. [Obsolete("See https://go.microsoft.com/fwlink/?linkid=845470", error: true)] public static IApplicationBuilder UseIdentity(this IApplicationBuilder app) => app; } }