I have a few class library assemblies from third parties. To help with organisation, I added a new project to my solution specially for these binaries. I didn't just add a solution folder, because I don't like that there is no physical folder there. I also like to to have these in their own project so that if I might add helpers for the original binaries I know where they are.
My project looks as follows: BinaryProj.csproj --Lib (folder) ----ab1.all ----bc3.dll ----cd4.dll
All of the above dlls are marked with 'Copy to output directory', but when I compile this project, these dlls are found under bin/Lib/....dll
instead of 'bin/....dll. How can I get rid of the damned
Lib`?