Remco, thanks for your detailed answer.
I've increased ram disk to 5.5GB, now everything back to normal.
Quote:The big reason NCrunch copies these files is because of file locking issues - DLL files are locked by any application domain that makes use of them, which means they cannot be modified or replaced while tests are in progress or their host processes are still running.
Do you mean NCrunch copies these files, so that:
#1) I can modify the original projects while tests are in progress;
#2) Tests of different sessions can work concurrently (because if they share the same copy of a file, the tests of one session may lock a file, that will cause problems for tests of another session)?
If #2 is not a reason, is it possible to create one copy of a file, and for each test session, create a hard link for the copy. This should greatly reduce disk consumption, and I can modify the original projects while tests are in progress.