2

Possible Duplicate:
Visual Studio Post Build Event - Copy to Relative Directory Location

i was just wondering if in Visual Studio there was a way to put all the referenced DLL files in a separate folder for when you build the project? I'm talking about when you build the project and go in Bin/Release or Debug, i have the exe file along with all the DLL files in the same folder and would like to clean it up and get the dlls in a separate resource folder or something like that. Thanks

Community
  • 1
  • 1
devman
  • 1,529
  • 2
  • 11
  • 24

2 Answers2

1

Use Post-build Event Macros, Or Check SO Post

Community
  • 1
  • 1
Kumar
  • 997
  • 5
  • 8
-1

Go into the project settings under build and change the output directory.

light
  • 816
  • 5
  • 16
  • 4
    the Build output path? doesnt that just change the output for everything? I'm trying to get the dll files in their own folder and keep the exe file at the root – devman Mar 11 '11 at 15:15