I have a .NET windows service made in VB.NET in Visual Studio 2013. In this project I have some DLLs referenced and also in app.config I have others defined as dependentAssembly (I didn't make this project).
When I compile this project, dependent assemblies specified in app.config are not being copied to output directory (debug or release depending on the case).
My questions are:
- What is the difference between specifying dependent assemblies in app.config and reference a DLL?
- Why dependent assemblies specified in app.config are not being copied to the output directory (debug or release) when compiling?
- Can I force visual studio to copy dependent assemblies specified in app.config to outut directory (debug/release) when compiling?