vote up 4 vote down star
1

Is there anyway I can make the process of adding references to C# projects less painfull?

Every time I create a new C# class library project. I have to use the Add Reference dialog for 5 times at least.

flag

60% accept rate

4 Answers

vote up 6 vote down check

Install the PowerCommands for Visual Studio. You can then simply copy and paste a bunch of references between projects (plus lots of other useful commands). Some of the other useful commands are:

  • Collapse Projects (my favourite)
  • Copy References and Paste References
  • Remove and Sort Usings
  • Open Containing Folder
  • Open Command Prompt
link|flag
vote up 0 vote down

You can install Resharper, last versions have improved usability if you mention some class in your code, but don't have reference to library with this class. In such case Resharper will offer you to add library reference and to import particular namespace. All you need to do is to click CTRL+Enter, and select from drop down menu "Reference library and import namespace". You will touch your keyboard only twice and Resharper will do the rest! Resharper really let you fully concentrate on writing good code without distraction with trifles.

link|flag
vote up 0 vote down

If you have certain references that you always add to a project then create a new project, add the references, get the project set up like you normally would, and then select File > Export Template. Then when you next want to create a new project, your newly-created template will be listed under the My Templates section.

link|flag
vote up 3 vote down

You can select more than one reference at a time to add using CTRL-Click. You can also use the Recent tab to find references that you've added recently to other projects easily.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.