visual studio 2008 - Changing the Default "Copy to Output Directory" Setting for Text Files -
Do anyone know how to change the file type of default "copy in the output directory" setting in Visual Studio 2008? is?
I often add text files to my projects, they can be anything from a remake file, or some use information or test files used by the app on runtime
But I've never added a text file, where I do not want it to be copied to the output directory on the build.
I always want to copy them, but I often forget to change the setting (especially if I'm adding a group in case of test files). I want to set the default for Visual Studio so that all .txt files are always copied to the output folder.
Does anyone know if there is a way to permanently change the default settings for .txt files, so are they always copying?
What can you accomplish by adding a postbilled event to your project command
Pre> xcopy / d / y $ (projectDir) *. Txt $ (targetdir)
Comments
Post a Comment