Visual Studio keeps building everything
问题 I have a large .sln file with many projects. I just made a change in project A and it builds nine other projects that project A references, but that had no code change. Is there a trick to speed this process up? 回答1: Divide and conquer: Limit the amount of build time that goes on in your solution by creating additional solutions that contain logical subsets of projects you're working on. This limits your scope and will speed up builds. See the The Partitioned Single Solution Model in this