Migrating to ASP.NET Core
In the quest to migrate to .NET Core, the first step at the time (a couple of years ago) was to start migrating to ASP.NET Core from using Katana (Owin). This seemed like a logical first step as ASP.NET Core 2.x could run on .NET Framework as well as .NET Core. Ultimately this was a good first step in our migration. ASP.NET Core 3.x is only supported on .NET Core 3.0 because it targets netstandard2.1. .NET Framework only supports netstandard2.0 and will never support netstandard2.1 This makes it much more challenging to migrate because my recommendation is to get your… Read More »Migrating to ASP.NET Core