Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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).

like image 335
Kinetic Avatar asked Nov 03 '17 15:11

Kinetic


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.

like image 105
Marco Luongo Avatar answered Nov 20 '22 18:11

Marco Luongo


DotNet Core is a large project spread over several repositories and groups on GitHub. DotNet Core code is available in

https://github.com/dotnet repos

while all ASP.NET Core specific code is available in

https://github.com/aspnet repos.

The source code which you are looking for is in

aspnet/Security repo.

OpenIdConnect sources are available under the following link:

aspnet/Security/src/Microsoft.AspNetCore.Authentication.OpenIdConnect/

like image 35
Jacek Blaszczynski Avatar answered Nov 20 '22 18:11

Jacek Blaszczynski