Kirtan
Kirtan

Reputation: 1812

Visual Studio Single Windows Form application Multiple Developer

I am about to develop a Windows Form application using Visual Studio. I want multiple developers to work on the same project I created. However users are not at same location as me, ie they are connected in via the internet.

My question is, How can we all work on the single application concurrently and have multiple developers connected to it through the internet ?

Upvotes: 0

Views: 444

Answers (1)

Bartosz Wójtowicz
Bartosz Wójtowicz

Reputation: 1401

I recommend you to use a source control tool like Subversion for example. This allows you continuously merge the code and track all the individual changes. It is often used in commercial institutions. http://tortoisesvn.net/

There are many other paid tools you could use if you can afford. http://en.wikipedia.org/wiki/List_of_revision_control_software

Upvotes: 4

Related Questions