Solution Explorer Screenshot How many projects can we create? Have any limitation? In Visual Studio, we can create one or more projects under a single solution.
Thanks, Tofael Ahmed
Solution Explorer Screenshot How many projects can we create? Have any limitation? In Visual Studio, we can create one or more projects under a single solution.
Thanks, Tofael Ahmed
As far as I am aware there are no official limitations other than your system limitations. However, there are many opinions on what constitutes an 'appropriate' number.
I have worked with solutions with just one project and others with well over 100 projects.
In my personal opinion I think the determining factor is separation of concerns - if the projects are used as ways of splitting code into more manageable pieces but the code is still interdependent then I think that is a good reason to have multiple projects.
If you have multiple concerns (e.g. Application, Support Libraries, Tests) you might will consider separate solutions to be appropriate.
In the end, the decision is yours and the limits are effectively your system limitations and your opinions.