How can I work simultaneously on a project of two or more machines in Visual Studio 2010

I have a team of 3 developers. We are working on the same project in Visual Studio 2010 from different places.

How I mainly work with teammates so that we can all work on the project while keeping everything in sync.

What tools will be required and how do I implement these tools for my project.

+1
visual-studio visual-studio-2010 collaboration
source share
6 answers

Or just take a look at here .

TFS is good for beginners (SCM for lock-based dummies, point-and-click interface, well integrated into Visual Studio - this is the official Microsoft SCM tool ).

SVN is a good environment (avoids blocking, a centralized repository, good graphical client interfaces).

But if you really want to use a modern, distributed SCM tool, choose one of the last 3.

As for plasticscm, this seems to be a very good solution - is it SCM, but has striking Visual Studio integration like no other tool (of course, with the exception of TFS).

+4
source share

The best bet is some type of source control.

SVN is a high-quality, free solution that allows you to connect to a single code repository.

http://subversion.tigris.org/

You can also use the free SVN server for quick and fast startup, such as VisualSVN

http://www.visualsvn.com/

There are many Visual Studio plugins there for SVN if you do not want to manage files from your folder structure

+1
source share

Any Visual Studio-enabled version control provider will do.

On the expensive side of TFS, but it got the best Visual Studio integration.

On the free side, you can create a free ProjectNocker SVN repository (or just use your own) and connect to it from Visual Sutdio using AnkhSVN.

+1
source share

You need a version control system. There are many, and many offer for free use. One example is Subversion, which is free and works with a central server called a repository. You can use an older machine as a server for storage, even an old laptop is great for the size of the team you mention.

Here is the installer link for the repository .

Then, each of your development machines requires a client to synchronize the source code. Here TortoiseSVN is a popular option. There are even tools for synchronization from Visual Studio. Google for VisualSVN and Ankhsvn.

+1
source share

Use a version control tool, such as SVN, and a plug-in for Visual Studio, such as AnkhSVN.

0
source share

If you use svn, mercurial, or some other open source source control methods, keep in mind that binary and object files can be ignored. You will also have to deal with assemblies. Make sure that all project participants have access to the certificate or a strong name file and are probably dangerous for storing it in svn without password protection.

Finally, you must first update and commit only after verifying that there are no errors. Make sure you zip your entire project often and place it in a safe place just in case. Also always separate production from development. :)

0
source share

All Articles