0

Is there any way to get VS2008 to automatically fill my website bin folder with all the necessary dependencies required for the website?

At the moment it just contains assemblies from the solution but not the third party assemblies I am also using.

Thanks,

AJ

AJ.
  • 10,732
  • 13
  • 41
  • 50

2 Answers2

0

You should set Copy Local to true in the reference properties.

http://msdn.microsoft.com/en-us/library/t1zz5y8c.aspx

Scoregraphic
  • 7,110
  • 4
  • 42
  • 64
0

You can use the post build events which you can configure in the properties page of a project.

As an example:

Post build and macros

Post build events

TurBas
  • 1,646
  • 13
  • 15