I use the open source library (log4net) that comes with the LICENSE, NOTICE, and README files that must be included when distributing it. Therefore, I want the visual studio to put them in the output directory along with my binaries.
I have log4net and its three files in the directory "lib \ log4net". The problem is that if I add files as content files, they will be copied to bin \ release \ lib \ log4net, not bin \ release. Is there a way to make visual studio minimize paths when creating?
Initially, I used the post-build step to copy them, but then the visual studio does not know about them and will not put them in any other output folder of the dependent project (which will be done if you call them content).
source
share