A Hopefully Simple Question From a Newbie...

ediguy

Member
Joined
Jul 15, 2005
Messages
8
Programming Experience
10+
Is there any way to copy a complete solution to a brand new solution so that I can use the base of the old solution and modify the code as appropriate for the new solution?
 
yes, like jmcilhinney said, copy and paste. to avoid confusion, rename the new *.sln too. for example, the original one is called MySoftware.sln in MySoftware folder. You copy and paste it to new MySoftware2 folder, but the *.sln is still unchanged. Rename it to MySoftware2.sln and no more confusion :)
 
Back
Top