views:

41

answers:

2

i am try to develop a small application. Now should i organize my 3rd party dll libraries so that when i publish the project and than install that application on another computer all the libraries should move with installer...

A: 

That's what the bin folder is for

Josh Stodola
He did not specify that this was a web app. I dont think that simply creating a bin folder will guarantee the behavior he wants in a winforms app.
magnifico
+3  A: 

Josh is right, just an FYI though. I've noticed DLLs not ending up there before and I'm like what did I do wrong?

1) Expand References in the Solution Explorer 2) Right-Click on your DLL and select properties 3) Make sure it says "Copy Local", I had one that wasn't showing up and it said false.

Cj Anderson