0

I have few resources that i have put into Dependencies Folder in the Project. Copy To Output Directory is set to Copy If Newer

Default Behavior is that it will copy to \bin\Dependencies\*

I want to set it to copy to \bin\*

How to achieve this?

enter image description here

Tilak
  • 30,108
  • 19
  • 83
  • 131

1 Answers1

0

If you need them to be in the bin folder, you need to put the files in the root of the project.

The only other way i can think of doing it is to add a post-build event to the project which copies them each time:

copy "$(ProjectDir)Dependencies\*" "$(TargetDir)"
Rhumborl
  • 16,349
  • 4
  • 39
  • 45