In this current Solution I will have ~10 projects (Console Applications) which will use the same functions from Helper classes. In the past I would just copy paste those folders in each project and add the references to the main class. Is there a way to create the Helper classes only once and be able to use them in any project in that solution, without duplicating them or having to reference another project?
Also I have to import the same 3 NuGet packages in each project, is there a way to import them at solution level and so they will be automatically added in each new project? I know I can right-click the Solution and just select each project without doing it manually for each project, but can they be added automatically for each new project created?