Multiple projects in a solution, using VSS

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

Is there a realistic way for some developers on our team to work with
multiple projects in a single solution under VSS source control, and have
other developers only working with a single project from the solution?

Thanks in advance.

Mark
 
Oh yea, no problem. we have a project going right now
that has 12 different VS projects inside our solution, all
under source control.

You can do several ways: one, create one solution file,
add all the projects to it, and then check the solution
file into source control. or, just have the projects
individually under source control, and have everybody just
create their own solution, with only the different
projects they need.

Checking the solution file in is good if you have specific
build configurations, like a 'Warnings as Errors' build
configuration. That way its available for everyone.
 
Golden!! Works swell.

john conwell said:
Oh yea, no problem. we have a project going right now
that has 12 different VS projects inside our solution, all
under source control.

You can do several ways: one, create one solution file,
add all the projects to it, and then check the solution
file into source control. or, just have the projects
individually under source control, and have everybody just
create their own solution, with only the different
projects they need.

Checking the solution file in is good if you have specific
build configurations, like a 'Warnings as Errors' build
configuration. That way its available for everyone.
 
Back
Top