Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

C# Project developed by many programers 1

Status
Not open for further replies.

florindaniel

Programmer
Dec 4, 2009
120
0
0
RO
Hello,
I need some help/info on how to use VisualStudio for a collaborative development.
We are two programmers and want to develop different modules of the same project (VisualStudio C#)
and/or reports.

I suppose the solution files should pe saved on a server, ok, what do we need to install
on the server, what on the workstations, etc..?

Thank you,
Daniel
 
Try using GIT for source code control and possibly something like bugzilla or redmine for bug tracking. With GIT, you don't need a server: you can just sync the repositories. Each workstation will need a copy of VS, source code control and bug tracking.

If you're using a spreadsheet for bug tracking, then that needs to be accessible from the server. The server does not need anything to read the spreadsheet - it is just common disk storage. A NAS drive will suffice for this.

Even easier if you do it on a VM. That way the underlying hardware can change and you just copy the VM wholesale across to the new machine. The best bit is that you don't need to power down your VM when you power down your machine. The VM can be suspended. When you run it again, it picks up from where you left off: like not powering down a machine at all.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top