There is Copy to Output Directory property for files in C# projects. But in VC++ projects it is absent. I know, that I can use Build events in VC++ and wri
You can specify copying in the project file as Jeff G answered in another question:
In the *.vcxproj file, change: to: PreserveNewest Then in the *.vcxproj.filters file, change: Resource Files to: Resource Files
In the *.vcxproj file, change:
*.vcxproj
to:
PreserveNewest
Then in the *.vcxproj.filters file, change:
*.vcxproj.filters
Resource Files
where the tag is for specified text files (it'll be for image files etc.)