I'm using .Net 7.0, and I'm trying to write a console application in Visual studio. In old versions it was possible to add some namespaces by 'using' primitives. But in this version there's no need to add any using primitives. For example it doesn't need to add 'using System' or 'using System.Linq'. I want to know that which namespaces has added to this 'Program.cs' class and how to add or remove any namespace to this list?
Thanks.