Sharing visual studio projects between computers

I have a laptop and a desktop computer that I want to share visual studio projects between them - what is the easiest way to do this?

+6
source share
3 answers

The easiest way to do this at the moment is to use Microsoft's new and free TFS (Team Foundation Server) service in the cloud.

First register your TFS account here . You will need to select a name that will give you the URL, for example http://yourname.visualstudio.com/

Further , in Visual Studio you can add a TFS server, where you can register and verify your solutions and projects from any number of computers.

+5
source

Do you want to share a Visual Studio project (1) or want the project to be running version (2) ?

  • In the first case, you might consider an online backup and storage service such as Dropbox, Google Drive, or SkyDrive. You can access your project from different computers and share it with others when necessary. This is the easiest way; but not version control.

  • If you need version control, I advise you to choose Apache Subversion . TFS is like walking a hard and thorny path and certainly NOT the easiest way.

So you can install VisualSVN to add SVN as a source control in Visual Studio. Then you can "Add a solution to Subversion using VisualSVN.

You can either host repositories on your local network using VisualSVN Server (or any other SVN server), or use the hosted SVN service. The initial setup takes virtually a couple of minutes maximum.

+2
source

You can use the free SVN service. Here is one of them: - https://www.assembla.com/home

+1
source

All Articles