I am one of those people who don't like this when random non-source files are deleted by the IDE in the source directory. Especially if they are generated as part of an assembly.
I found that by overriding both the <IntermediateOutputPath> and <BaseIntermediateOutputPath> parameters, I can share the clutter left behind into several empty directories that I suppose I can tolerate.
However, using "<BaseIntermediateOutputPath>" forces Visual Studio to ask if I really want to open the project, because it considers this to be a "dangerous" add-on.
Does anyone know how to disable this security check, or perhaps a way to get rid of all intermediate files without using "<BaseIntermediateOutputPath>" ??
source
share