Hello, This is more anoying than critical, but when I add a new item (through a template) in a VS2008 solution, the created file does not comply to my user's formatting settings.
For example, if I create a new C# class, VS implements
public class Class1
{
public Class1()
{
}
}
even if accordingly to my settings, it should have been
public class Class1{
public Class1(){
}
}
How can I force the templates to use my settings?
Thank you,
SKS
