I've read this question about what the obj and bin folders are.
My APP/obj/CONFIGURATION folders contain hundreds of files. This includes a copy of every form (as a .resources file), icon, image (.bmp, .jpg, etc), multi-language translation file, and so on. The build takes up to three (painful!) minutes to complete.
- Do these intermediate files have to hit disk in this way?
- Can Visual Studio be configured to not hit disk with all these copies, but to link everything in memory?
This is a C#.NET application, if relevant.