I want to improve the roundtrip time when doing TDD. I guess the total compile time for the solution will be longer, but that is not important.
Background: When I watch the output window during compiling when I wait for my unittest to run, I see that some time is spent only verifying that depended projects does not need to be build.
Statement: Splitting the Testproject (today about 20k lines and dependency to nine other projects) into smaller test projects where each testproject tests a smaller part of the code, will give me less dependencies and therefore increase compile time for the testproject I'm currently working with.
Views?