How do you structure a very large application?
- Multiple smallish projects/assemblies in one big solution?
- A few big projects?
- One solution per project?
And how do you manage dependencies in the case where you don't have one solution. Note: I'm looking for advice based on experience, not answers you found on Google (I can do that myself).
I'm currently working on an application which has upward of 80 dlls, each in its own solution. Managing the dependencies is almost a full time job. There is a custom in-house 'source control' with added functionality for copying dependency dlls all over the place. Seems like a sub-optimum solution to me, but is there a better way? Working on a solution with 80 projects would be pretty rough in practice, I fear.
(Context: winforms, not web)
EDIT: (If you think this is a different question, leave me a comment)
It seems to me that there are interdependencies between:
- Project/Solution structure for an application
- Folder/File structure
- Branch structure for source control (if you use branching)
But I have great difficulty separating these out to consider them individually, if that is even possible.
UPDATE: I just discovered Dependency Injection, I wonder whether it could have an impact on this question.
I have asked another related question here.
