These namespaces are added per default when a class is created:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
I want to modify existing projects or my custom project template so that additional usings are added when a new class is created.
(Instead of having to add them manually for every class. Sure, "CTRL + ." works to add namespaces for classes, but it do not work for extension methods.)