sharptooth
sharptooth

Reputation: 170499

What's the limit to project size Visual Studio IDE can handle?

Visual Studio stores "projects" in XML (.vcproj files). In my experience as more and more files are added to the project and as more and more projects are added to a solution opening a solution in IDE takes longer and longer.

Is there a limit to the number of files or to project tree complexity or to some other characteristic of Visual Studio projects and solutions after which typical operations on a project becomes unreasonably slow (or maybe even impossible)?

Upvotes: 4

Views: 1657

Answers (1)

JackAce
JackAce

Reputation: 1405

There is no realistic limit to the number of projects that you can have in Visual Studio 2008. I have worked with dozens in a single solution and I would imagine that the actual limit would be in the thousands (or more).

You could combat performance issues with an SSD hard drive, multiple processors and a boat load of memory, but you should really consider breaking out the solution and just referencing the assemblies of the upstream projects. Yes, if you have a single solution it makes it easier to debug, but you are costing yourself many many hours of waiting while waiting for the solution to open up and compile.

Upvotes: 1

Related Questions