I've got a big solution with many projects in it. So when it builds it copies many libraries to the build's output directory. How can I specify some DLL file's output directory?
For example:
./OutputDir/Libraries/[and here we have some DLL files]
./OutputDir/Program.exe.
An XCOPY post-build action helps me to copy all DLL files into another directory. Here it is post-build action:
mkdir "$(ProjectDir)bin\$(ConfigurationName)\Libraries"
xcopy "$(ProjectDir)bin\$(ConfigurationName)\*.dll" "$(ProjectDir)bin\$(ConfigurationName)\Libraries"
How should I link those DLL files to an executeable?