1

I have a solution in C# Express 2010 which has multiple class libraries in it. When I build my program, the .exe and all of the .dll files are put in the same folder.

Is there any way for me to specify which subfolders I can place the .dll libraries in? For example, put the main .exe in the root folder and the .dll files in a subfolder called "lib".

Liam Flaherty
  • 337
  • 1
  • 7
  • 19

1 Answers1

0

You can change your build output for each project. http://msdn.microsoft.com/en-us/library/ms165410.aspx

lex87
  • 1,276
  • 1
  • 15
  • 33
  • I tried doing this in the project for the class library however it didn't actually change anything in the output folder. – Liam Flaherty Jun 13 '13 at 11:02