Jader Dias
Jader Dias

Reputation: 90593

How to configure Visual Studio to create all projects including a reference to a specific dll?

I am tired of adding a reference to System.ServiceModel in each project I create. Is there any way to automate this?

Upvotes: 1

Views: 209

Answers (2)

jvilalta
jvilalta

Reputation: 6799

You can update the existing (default) project templates and add the reference to it. Templates are located in this directory on my box: C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE

Look for the project templates folder and then navigate based on the type of project you are creating and the language you are using.

Here's a snippet of the classlibrary project template that I think is what you are looking for:

<ItemGroup>
    <Reference Include="System"/>
    $if$ ($targetframeworkversion$ == 3.5)
    <Reference Include="System.Core">
        <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Xml.Linq">
        <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Data.DataSetExtensions">
        <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>    
    $endif$
    <Reference Include="System.Data"/>
    <Reference Include="System.Xml"/>
</ItemGroup>

Just add your reference to the list.

Upvotes: 2

Hannoun Yassir
Hannoun Yassir

Reputation: 21232

Maybe you can create a template and use it every time ...

Upvotes: 3

Related Questions