ConfigureAwait(false) relevant in ASP.NET Core?

ConfigureAwait only has effects on code running in the context of a SynchronizationContext which ASP.NET Core doesn’t have (ASP.NET “Legacy” does).

General purpose code should still use it because it might be running with a SynchronizationContext.

ASP.NET Core SynchronizationContext

Leave a Comment