Set a default comment for every new project

4

I need to set a default comment, so that in every project that is created it appears, without typing it every time.

Ex: \ Author: Peter H.

    
asked by anonymous 27.08.2016 / 23:27

1 answer

6

The templates used to start the code are in C:\VisualStudioInstallationDirectory\Common7\IDE\ItemTemplates\VisualBasic33\ and you can move them at will.

Obviously, VisualStudioInstallationDirectory is where your VS is.

This is something that was used a lot in the 70s / 80s. With version control people stopped doing this. If two people tinker with the code, who is the author? Putting this type of comment today is considered a mistake. It will not cause great harm, but if you want to do it well, do not put things that should not be in code.

    
27.08.2016 / 23:39