Look for this file, it’s him you want to change:
C:\Program Files (x86)\Microsoft Visual Studio\12.0\Common7\IDE\ItemTemplates\CSharp\Code\1033\Class\Class.cs
I think it would look something like this:
using System;
using System.Collections.Generic;
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
$endif$using System.Text;
$if$ ($targetframeworkversion$ >= 4.5)using System.Threading.Tasks;
$endif$
namespace $rootnamespace$
{
public class $safeitemrootname$
{
}
}
I put in the Github for future reference.
To use with other versions of VS just change the version in the file path. Just remembering that from Visual Studio 2010 behind the file is compressed in format zip
. It is unlikely to change fundamentally in future versions like the new Visual Studio 2015 or the community edition which is free to almost everyone. In addition to the . NET pass have mit license.