OAuth 2.0 is an industry standard protocol for authorization. It is designed to accommodate a wide range of applications such as web, desktop, and mobile apps by… Read more “Securing ASP.NET Core APIs with the Client Credentials Grant Type”
Tag: .NET Core
Getting Started with Docker in Visual Studio 2019
Development frameworks, platforms, and tools that do not offer a rich development experience will ultimately lack in adoption. Docker is an amazing technology but, what is the… Read more “Getting Started with Docker in Visual Studio 2019”
Debugging an ASP.NET Core Docker Container in Windows AND Linux
There is no question that .NET Core has exploded in popularity over the last couple of years. The new cross-platform successor to the .NET Framework has opened… Read more “Debugging an ASP.NET Core Docker Container in Windows AND Linux”
What’s the Difference Between Razor and Blazor?!?
If you have worked with ASP.NET MVC in the past, then you have probably interacted with Razor Views in one way or another. Since ASP.NET MVC was… Read more “What’s the Difference Between Razor and Blazor?!?”
Running IdentityServer4 in a Docker Container
Utilizing a secure identity provider is essential to any web platform. Many cloud based solutions such as Auth0, Azure B2C, or AWS SSO are available in the… Read more “Running IdentityServer4 in a Docker Container”
Implementing the Singleton Pattern in ASP.NET Core
The Singleton Pattern is one of the most popular design patterns in software development. In large part, this is due to two key points. First, it is… Read more “Implementing the Singleton Pattern in ASP.NET Core”
Decompiling Syntactic Sugar in C#
Over the last couple years, there have been a few new features introduced into C# that are considered “syntactic sugar”. These types of enhancements are great as… Read more “Decompiling Syntactic Sugar in C#”
Build a Console App in .NET Core Like a Pro!
If you have worked with .NET before chances are you’ve interacted with a console application at some point. Console applications can range from small helper utilities to… Read more “Build a Console App in .NET Core Like a Pro!”
Building a Compatibility Shim with .NET Standard 2.0
Dying to get started with .NET Core but, have a couple lingering .NET framework libraries? Well there is hope. With .NET Standard 2.0, libraries that are compiled… Read more “Building a Compatibility Shim with .NET Standard 2.0”
Inject Multiple Service Implementations in ASP.NET Core
Most people are familiar using an IOC container to facilitate dependency injection in their applications. But have you come across a situation where you wanted to inject… Read more “Inject Multiple Service Implementations in ASP.NET Core”