tags:

views:

49

answers:

3

how do you make a copy of a project in .net?

+4  A: 

CTRL + C, CTRL + V :) Couldn't resist, sorry.

You just need to copy all of the project files over into a new directory.

Russ Cam
+1 Love the kbd tags. Never used them before, are they always styled like that or does that credit belong to SO?
Mercurybullet
stackoverflow styling - `kbd {-moz-background-clip:border;-moz-background-inline-policy:continuous;-moz-background-origin:padding;background:#EEEEEE none repeat scroll 0 0;border-color:#CCCCCC #AAAAAA #888888 #BBBBBB;border-style:solid;borderwidth:1px 3px 3px 1px;color:#000000;padding:2px 4px;white-space:nowrap;}`
Russ Cam
Nice, I'll keep that tag in mind now. Thanks.
Mercurybullet
A: 

Create a new project and then copy files from one to the other (using normal windows copy/paste)

Marek Karbarz
A: 

I just copy all visual studio files to a different directory.

bitbonk