Copy ASP.NET project to another PC

  • Thread starter Thread starter Rob Nicholson
  • Start date Start date
R

Rob Nicholson

How do you go about copying an ASP.NET project to another PC when you can't
use Copy Project. I basically want to transfer a copy to my home PC so I can
work from there.

Thanks, Rob.
 
Thanks - that looks like it'll do the trick.

Unfortunately not :-( The KB articles rely upon a network connection between
the two computers in order to use Copy Project - that's the problem. My home
computer isn't on the network so need some way to package up the source
folder, transfer it (FTP, email, CD etc) and restore on the target PC.

Cheers, Rob.
 
Rob said:
Unfortunately not :-( The KB articles rely upon a network connection between
the two computers in order to use Copy Project - that's the problem. My home
computer isn't on the network so need some way to package up the source
folder, transfer it (FTP, email, CD etc) and restore on the target PC.

Cheers, Rob.

I do it like this:

on my local computer i have this directory structure:

c:\Inetpub\wwwroot\WebApp1

packed this directory to ZIP file.

then in work:
1. create directory named WebApp1 in directory c:\Inetpub\wwwroot\
2. create new virtual directory(in IIS) name it WebApp1 and map it to dir c:\Inetpub\wwwroot\WebApp1
3. unzip ZIP file to directory c:\Inetpub\wwwroot\WebApp1


and it is. This work for me ok.
 
Back
Top