I would like to make a copy of my project. I would rather not start doing it from scratch by adding files and references, etc. Please note that I don't mean copy for deployment. Just plain copy.

Is there a tool in VS to do this? I am using VS 2008

link|improve this question

58% accept rate
feedback

3 Answers

up vote 11 down vote accepted

If you want a copy, the fastest way of doing this would be to save the project. Then make a copy of the entire thing on the File System. Go back into Visual Studio and open the copy. From there, I would most likely recommend re-naming the project/solution so that you don't have two of the same name, but that is the fastest way to make a copy.

link|improve this answer
Thanks! sometimes the right solution is the simplest – sarsnake May 19 '09 at 18:18
That's what I do too. I usually manually edit the .*proj file to change the names and such once I make the copy. – Soo Wei Tan May 19 '09 at 18:21
@Soo - That is what I do as well, but manual .*proj and .sln changes are not for everyone... – Mitchel Sellers May 19 '09 at 18:45
3  
What happens to the ProjectGUID, then? – Lars Corneliussen Nov 10 '11 at 14:33
2  
The project GUID is updated by VS automatically, if another project with the same GUID exists in the same solution. – Sebastian Krysmanski Jan 17 at 8:27
show 2 more comments
feedback

I guess if this is something you do often, there's a little (non-free) utility that promises to do it for you: I haven't used it, so not sure how good it is:

http://www.kinook.com/CopyWiz/

There is also this project on CodePlex:

http://clone.codeplex.com/

I will probably give the codeplex project a try, and if it doesn't work I'll manually rename everything and edit the sln file.

link|improve this answer
feedback

May be it's a good idea to run Subversion localy and use it for your source code managment, it might look as an overkill from the first look but it's really a good thing to do.

link|improve this answer
I am using SourceSafe (we are not switching to an SVN anytime soon, so I will have to do with SourceSafe). However, I would like to have a separate project rather than keep mergin branches etc. At this point, given the circumstances, having a separate project is easier for me – sarsnake May 20 '09 at 20:07
feedback

Your Answer

 
or
required, but never shown

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