I’m building an application that has quite a few files that need to be included in the destination directory. So far, there haven’t been very many files so I would simply change the settings of each file individually to Copy to Output Directory :: Copy if newer. The problem now is that I’m adding files at an exponential rate.

Do any of you know how to make all of the files that are sub of the “Some_Directory” have the Copy to Output Directory :: Copy if newer set how I want it?
You cam use a post-build event.
Using following posts, I made a post event that does exactly what you want:
Now, you can easily edit Post-build events, go to your project settings and go to the Compile tab, now click the Build Events and put following line in the *Post-build event command line” text box:
See this image:

In your case you will have to change “Test” by “some_directory” and that’s all.
You can add the
/Dparameter (you can look that up withxcopy /?in your command prompt).