I have a VS2008 I want to copy certain files from a directory into my /bin/ folder. I have set the files (located in /common/browserhawk/) to \"Co
/bin/
/common/browserhawk/
You can add a Post Build Event to copy the files. Go to project properties, Build Events tab and add the following to the Post-build event command line:
copy "$(ProjectDir)\common\browserhawk\*.*" "$(TargetDir)"
Be sure to include the quotes if your project path has spaces in it.