问题
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?
回答1:
Yes, you could use the Power Commands extension to copy and paste references in VS2010.
回答2:
I had the same question in Visual Studio 2013 Preview. I couldn't find any "Power Commands" extensions yet, so I did it manually.
- Unload the source project.
- Edit
- Copy contents of tag tag that lists the tags.
- Unload the target project
- Edit
- Find the tag and paste
- Load the projects.
回答3:
Simple Solution - For External Libraries
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.
回答4:
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.
回答5:
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.
回答6:
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'..
来源:https://stackoverflow.com/questions/8742334/is-it-possible-to-copy-paste-references-from-one-project-to-another-in-visual