I use Visual Studio 2022 to work with .Net stack. When I am creating a new class or interface it always appears with a bunch of unnecessary using's.
Is it possible to disable such behavior?
I use Visual Studio 2022 to work with .Net stack. When I am creating a new class or interface it always appears with a bunch of unnecessary using's.
Is it possible to disable such behavior?
As mentioned in the answer to How do you default a new class to public when creating it in Visual Studio? it is possible to edit templates Visual Studio uses for the new Classes and Interfaces.
For VS2022 Community Edition the path to templates folder is C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\ItemTemplates\CSharp\Code\1033\
Thanks julealgon for the hint