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
|
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 |
||||
|
|
|
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. |
|||||||||||||||
|
|
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: 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. |
|||
|
|
|
The best way is actually to create a new Project from scratch, then go into the folder with the project files you want to copy over (project, form1, everything except folders). Rename the files (Except for form1 files) for example: I copied Ch4Ex1 files into my Ch4Ex2 project but first renamed the files to Ch4Ex2. Copy and paste those files into the Solution Explorer for the new project in Visual Studio. Then just overwrite the files and you should be good to go! Old thread but I hope it helps anyone looking for this answer! |
|||
|
|
|
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. |
|||
|
|
The safest way to copy a project is to create new empty project from scratch, with different name of course, then simply copy all required files and paste it accordingly from old project to the new one using vs2008 Solution Explorer. |
||||
|
|