Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding .NET namespaces automatically

Tags:

c#

asp.net

I need to add this namespace to my c# file:

using System.Data;

Is there a way to automatically add this to newly created pages in c#.net?

I don't want to add this namespace to new pages.

like image 823
AjmeraInfo Avatar asked May 26 '10 11:05

AjmeraInfo


1 Answers

Open %Program Files%\Microsoft Visual Studio 8\Common7\IDE\ItemTemplates\CSharp\1033\Class.zip, Or: %Program Files%\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Code\1033

You can modify the class.cs file within that's used to generate all new C# source files - it looks like this:

using System;
using System.Collections.Generic;
using System.Text;

namespace $rootnamespace$
{
    class $safeitemrootname$
    {
    }
}

Also, there is a file called Class.vstemplate. Open this and you can edit the following:

<Reference>
    <Assembly>System</Assembly>
        </Reference>
        <Reference>
            <Assembly>System.Data</Assembly>
        </Reference>
        <Reference>
            <Assembly>System.Xml</Assembly>
        </Reference>
    </References>
like image 182
Daniel Dyson Avatar answered Sep 17 '22 22:09

Daniel Dyson