How to make a copy of a developing VS05 application to another machine?

  • Thread starter Thread starter Bill nguyen
  • Start date Start date
B

Bill nguyen

I'm working on a VB 05 project. I need to copy the project from my home's
development machine to the PC at work so I can work in both places. I was
able to do this with VS2003 but always got error "... appname.vbproj
application not installed!" with 05' projects.
I have VS05 installed in both machines.

Thanks

Bill
 
I'm working on a VB 05 project. I need to copy the project from my
home's development machine to the PC at work so I can work in both
places. I was able to do this with VS2003 but always got error "...
appname.vbproj application not installed!" with 05' projects.
I have VS05 installed in both machines.

I would install some sort of source control... take a look at SourceGear
Vault. I believe their 1 user version is free.
 
I don't have the need for source control since I'm the only one who will be
working on this project.
Is there any other option for this?
Thanks

Bill
 
Bill,

Flashdrive.

Kerry Moorman


Bill Nguyen said:
I don't have the need for source control since I'm the only one who will be
working on this project.
Is there any other option for this?
Thanks

Bill
 
I personally use source control even tho I am the only developer on certain
projects. I find it handy to be able to roll back, or compare code changes
with previous versions.
IMHO I would have thought this was an ideal suggestion by Spam Cathcher if
you are wokring on code stored in two locations.

JJ
 
I'll use source control if I have to.

However, isn't this something that we can handle from within VS2005 itself
instead of using an add-on for such a simple requirement?

Thanks for the advice.

Bill
 
Bill,

Yes, start and keep the project on a flash drive. Then it is completely
portable to any development machine you use.

Of course, as with everything, regularly backup the flash drive.

Kerry Moorman
 
Thanks;
I'll try this.

Bill
Kerry Moorman said:
Bill,

Yes, start and keep the project on a flash drive. Then it is completely
portable to any development machine you use.

Of course, as with everything, regularly backup the flash drive.

Kerry Moorman
 
I'll use source control if I have to.

However, isn't this something that we can handle from within VS2005 itself
instead of using an add-on for such a simple requirement?

Thanks for the advice.

Bill

If it's a desktop project then I'm not sure what your problem is in
the first place. I have a VS2005 VB application that I move between
home and work all the time. One main project (desktop app) and two
supporting class library (DLL) projects. The solution has all three in
it, and each project lives in a separate directory under My
Documents\Visual Studio 2005\Projects. There are also a few third
party controls involved as well as the ReportViewer.

SourceSafe isn't a bad idea; I should be using it; but it certainly
isn't needed to move a project. A thumb drive should suffice.

Why not try starting a new project and use Add Existing Item to keep
adding parts of the solution until you figure out what is missing. It
sounds like something in the project is not being copied.
 
I don't have the need for source control since I'm the only one who
will be working on this project.
Is there any other option for this?

The flash drive idea is good - but source control will allow you to sync
your project amongst many computers as needed (even tho you're the only
developer).
 
I got this advice from Spam Catcher recently. I'm inclined to go with
sourcegear vault. I'm mainly working by myself so I don't really need fancy
features regarding source control. However, I would like to know if there
are other options beside VSS and Sourcegear. I'm looking for user friendly
implementation and operation, not sophistication.

In sourcegear site, there's an eval binaries that youc an download. Do I
need to download both server and client components?

Thanks

Bill
 
I got this advice from Spam Catcher recently. I'm inclined to go with
sourcegear vault. I'm mainly working by myself so I don't really need
fancy features regarding source control. However, I would like to know
if there are other options beside VSS and Sourcegear. I'm looking for
user friendly implementation and operation, not sophistication.

In sourcegear site, there's an eval binaries that youc an download. Do
I need to download both server and client components?

Yes you do - the client is used to check in/out files while the server (a
set of ASP.NET web services) does the back end operations.

You'll also need SQL server.

Other options include CSV and Subversion... These were originally UNIX
based source control systems, but they now have Win32 ports and both have
VS.NET integration. Both CSV and Subversion are free. However, I've found
them to be much harder to setup and use than SourceGear.
 
Back
Top