ASP.NET Core
ASP.NET Core is the open-source version of ASP.NET, that runs on Windows, Linux, macOS, and Docker.
Learn
Fundamentals
Deep dive
Recipes
Swagger
Logging
Dispose
Performance
OData
Securing
Testing
Versioning
Health checks
Packaging
WebPack
Articles to review:
Controller action status code
Authentication
Use Azure Directory
Go to Azure Portal and create an application in Azure Active Directory: Integrating Azure AD into an ASP.NET Core web app
Examples: GitHub Azure-Samples/active-directory-dotnet-webapp-openidconnect-aspnetcore or run
dotnet new mvc -o dotnetadauth --auth SingleOrg --client-id <clientId> --tenant-id <tenantId> --domain <domainName>
Edit csproj file
Edit
appsettings.json
file
Edit
Startup.cs
:
Last updated