#csharp - Austin Cooper .dev #csharp | Austin Cooper .dev

Austin Cooper .dev

#csharp posts

Azure Active Directory Authentication in ASP.NET Core 3.1


Intro Using Azure Active Directory for authentication is super simple in .NET Core 3.1. There’s a couple of things that need to be just right, and then it “just works.” This guide assumes that you’re already familiar with ASP.NET Core 3.1 and how those projects are structured. GitHub repo for...

Creating Custom Middleware in ASP.NET Core (Part 1)


What is middleware? Simply, middleware is code that becomes part of a pipeline to handle requests and responses in a web app. In ASP.NET Core, middleware is a big deal! All requests are handled by a pipeline of middleware. If you’ve created an ASP.NET Core app before, you are probably...