Reputation: 53303
Is there a way or tool that lets you to copy some references from one project and paste them to another -so that I do not bother my self again by using ADD REFERENCE?
Upvotes: 25
Views: 35291
Reputation: 349
Click add references.
Click Browse.
Navigate to the folder containing the other project. Then, go to /project-name/bin/debug.
Highlight the desired dll's and then click add.
Upvotes: 8
Reputation: 406
If you do not have access to PowerCommands, try opening the .csproj
files of both projects in an (advanced) text editor. The .csproj
files are XML files.
Look for the <itemgroup>
subsection that contains a number of <reference>
tags. Copy the <reference>
tags corresponding to the references you wish to copy from the source .csproj
file to the corresponding <itemgroup>
subsection in the target .csproj
file.
If the target project was opened in Visuals Studio while you did this, VS will notice that the .csproj
file has been altered and will ask you to reload the file, click 'Yes' to do so and verify that the references have been added to the reference list.
Upvotes: 6
Reputation: 181
I had the same question in Visual Studio 2013 Preview. I couldn't find any "Power Commands" extensions yet, so I did it manually.
Upvotes: 10
Reputation: 8502
I think its possible in Visual Studio 2010
, just highlight the references you want to copy, right click and select 'Copy References' from the menu..and then go to the other project, right click the References item and select 'Paste References'..
Upvotes: 0
Reputation: 1392
Right click on the reference (you can select more than once) -> Copy Reference.
Change Project / VS. Right-Click on "References" -> Paste Reference
But you will need Powercommands for that.
Upvotes: 0
Reputation: 696
Yes, you could use the Power Commands extension to copy and paste references in VS2010.
Upvotes: 13