Build times increase dramatically when you have many projects in a solution. The C# compiler re-analyzes every dll that gets copied, so in a sense the 'copy local' option is evil.
For a possible solution, take a look at these two articles by Patrick Smacchia:
In short, build time increases exponentionally with the number of projects, and because of that, you should try to minimize the number of needed projects, by merging them together. Project/assemblies are often used to force architectural boundries (and I use them like this as well), but this doesn't cut it for large projects. Instead, you can use a tool such as NDepend to validate architecture rules, and prevent cyclic dependencies between types. You can do this by grouping types in namespaces and grouping types per feature.
One note though. I've used the advice on the Partitioning code base through assemblies in one of my open source projects, Simple Injector. Projects don't reference other projects directly, but only assemblies. Downside of this is that the Visual Studio Go To Reference option (F12) doesn't work anymore, since VS doesn't know anything anymore about the project. Instead of jumping to the code, VS will jump to a generated file that only contains the API definition of a type. After consulting Patrick Smacchia about this, he explained that he never experienced this, possible because his team uses Resharper, which seems to still knows how to jump to the code.
Conclusion is that you need to experiment with this, and might want to give all developers a productivity tool such as Resharper, that allows you to still 'jump to code'. And you need a tool such as NDepend (NDepend is great) and integrate it in the build process to ensure that developers don't break architecture rules.
Another option to reduce compile time is to split the teams in such way that core libraries teams become 'external'. Those teams can develop, version, and release there reusable library as DLL that other teams can include in their solution (and checkin that specific version into source control). This saves those teams (probably product teams) from having to compile the base libraries and because those DLLs are (within the solution) placed in one folder, you immediately gain the performance boost as described in Pattrick's article. This has possitive impact on compile time on both the dev box and the build server.
Downside of this approach is that you (again) can't 'jump into' that code, and the process of developing the core libraries will be much more strict. Those libraries become reusable frameworks and you can't easily change the public API of those libraries. Product/Feature developers also can't simply add/change code or fix bugs in the core library and they need to wait for the Core Team to publish a new release. However, with the current size of your organization (multiple hundreds of devs), you probably already need (or have) a structure like this.