Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can a project contain other projects with Visual Studio?

I have a software project that has the following structure.

- Library A
- Library B
- Main program
- Test for Main

I have four project files (csproj) for each one, but it would be good if I can debugging/compile those projects in a single solution explorer.

  • Does Visual Studio (especially for 2010) support this feature?
like image 425
prosseek Avatar asked Sep 14 '25 14:09

prosseek


1 Answers

No, projects cannot contain other projects in Visual Studio. Solutions are used as the container for projects.

I don't understand why a project container would work but a solution would not. Can you elaborate?

like image 176
JaredPar Avatar answered Sep 17 '25 19:09

JaredPar