Where can I find the ASP.NET Core 2 source code? Specifically for Microsoft.AspNetCore.Authentication.OpenIdConnect

Viewed 6673

I know I can see the (unofficial) source for .Net Core 1 here: https://aspnetsource.azurewebsites.net/

Is there any way to get the official source for the new version?

Does anyone have the exact official Microsoft GitHub URL or another official Microsoft website with the source? I felt this was going to be easy to find, then you look, and the dotnet GitHub repos are a wasteland of unhelpful documentation and no source (in many cases).

2 Answers

After 2 years as this question is opened, I personally found very excellent search fatures to navigate on NET Core sourse code the official web site https://source.dot.net/

You can just search any Type of class, vars, interfaces etc and get in a second the complete source.

Hope this will help.

Related