we have a solution file containing several solution folders : libraries, unit tests, applications ...
With VS2010, we can only create projects for this folder by right-clicking on it and using "build" or "rebuild".
This works great on developer workstations, and we would like to do the same on the continuous integration server that uses MSBuild .
So, can we create a solutions folder with MSBuild?
Or do we need to create a special solution for each folder?
Thanks in advance for your help.
FINAL EDIT : The output of the answers below is that there is no built-in way to do this, but some workarounds:
- create a dedicated solution only with selected projects,
- use dedicated csproj , which will create the selected projects,
- Add a new project that will reference the selected projects in the existing solution file.
I decided to use a dedicated solution file because it is less intrusive and tricky, although not more flexible (a dedicated csproj solution should offer full control).
source share