How I organize my global usings
I use implicit global usings for all global using directives in .NET6 projects. I use a separate GlobalUsings.cs file for all global usings in non-.NET6 projects. Global usings are a new language feature introduced with C# 10 allowing us developers to reduce clutter by defining a using-statement just once for the whole project so it doesn't has to [...]