I'm learning a lot of things as I go along here. And one thing I've just learned is that when developing a dll with its own Config file, the dll has to be copied into the same directory as the parent application.

My question is:

VS sets your project up with the default directory structure: ...\bin\debug which also seems to contain some other files besides your dll (I assume these are related to the debug symbols, etc).

So how do you set it up to copy your dll to another directory when debugging?

Right now, I'm having to manually copy the built dll with every run and that's getting to be a bit annoying.

Thanks in advance for any help!!

Oops... Forgot to mention I'm using VS 2008