aspnet / Security

[Archived] Middleware for security and authorization of web apps. Project moved to https://github.com/aspnet/AspNetCore
Apache License 2.0
1.27k stars 600 forks source link

Microsoft.AspNetCore.Authentication.Core code? #1840

Closed dazinator closed 6 years ago

dazinator commented 6 years ago

Hello. I am trying to diagnose an issue in my asp.net core 2.0 application, and I noticed that services.AddAuthenticationCore() is called which lives in a Microsoft.AspNetCore.Authentication.Core assembly - however I can't find the source code for this.. Could someone point me in the right direction?

Cheers

HaoK commented 6 years ago

https://github.com/aspnet/HttpAbstractions/blob/master/src/Microsoft.AspNetCore.Authentication.Core/AuthenticationCoreServiceCollectionExtensions.cs#L20

dazinator commented 6 years ago

Thanks!