Is there any easy way to add a using statement to every class I create in a project without having to write
using SomeNamespace;
in every file?
[edit] I could add a template I realise but I'm talking about doing it for every file in an existing project.