Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我Dependencies在项目中放入文件夹的资源很少。 复制到输出目录设置为如果更新则复制
Dependencies
默认行为是它将复制到\bin\Dependencies\*
\bin\Dependencies\*
我想将其设置为复制到\bin\*
\bin\*
如何做到这一点?
如果需要将它们放在 bin 文件夹中,则需要将文件放在项目的根目录中。
我能想到的唯一另一种方法是在项目中添加一个构建后事件,每次都复制它们:
copy "$(ProjectDir)Dependencies\*" "$(TargetDir)"