In my Visual Studio 2008 web vbproj, I have included only certain files in the bin folder. I am using browserhawk and it needs to have some browser definition files (maindefs.b
Use a Post Build Event to copy the files. Be sure the browser hawk files build action is set to "do not copy". Then goto your project properties, select the "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.