When creating a new project in VS 2022 with .NET 6, following new features are added automatically:
- Top-Level Statements
- Implicit Usings and Nullable References
Is there a way to create a .NET 6 project
without top-level-statements (a workaround other than creating a .NET 5 project & changing project type to .NET 6)
with implicit usings & nullable references disabled (without editing the project file each time after project creation)

