Is it possible to synchronize my Visual Studio projects with another computer?

3

I use VisualStudio at work and at home. I would like to know if there is any way for my projects that I develop in the work PC to be synchronized in my profile and I can access them on my home computer automatically, without having to copy the VisualStudio folder.

    
asked by anonymous 13.10.2016 / 21:19

1 answer

4

One of the solutions would be to use Visual Studio Team Services to manage the source code of your project through of the Git or TFVC . It's free for up to 5 users.

1. Create an account on Visual Studio Team Services .

2.Createanewproject.

3.AftercreatingtheaccountuseittologintotheVisualStudioIDE.

4.ConnecttoTeamFoundationServer(VisualStudioTeamServices).

5.Connecttotheaddressyoucreatedinstep1.

6.SelecttheprojectthatwascreatedandclickConnect.

Once you've done this, you can now centrally manage your project by logging in with the same account on the other computer and using the IDE's resources. It's important now to learn how project mapping and check-in resources, Get Last Version, work to get control of the source code.

    
30.05.2017 / 05:32