在 VS2010 中的构建后事件中将 bin 文件复制到物理文件位置
我想将 bin 文件夹中生成的 dll 复制到 vs2010 中的 Post Build Event 上的文件位置。
有人可以帮我解决这个问题吗?
谢谢
I want to copy my dll generated in bin folder to a file location on Post Build Event in vs2010.
Can some one help me on that.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您想要添加类似以下内容:
到项目属性页面的“构建事件”选项卡上的构建后事件。
/Y
将阻止它提示您确认覆盖。如果您还需要复制
.pdb
文件,则需要类似以下内容:您可以通过单击“编辑构建后...”来查看更多替换标记($XXX 值)。 属性选项卡中的按钮,然后展开宏>> 按钮。
You want to add something like:
to you post-build event on the Build Events tab in the project properties page. The
/Y
will stop it from prompting you to confirm an overwrite.If you also need to copy the
.pdb
file, you will need something like this:You can see more substitution tokens (the $XXX values) by clicking the Edit Post-build... button in the properties tab and then expanding the Macros>> button.
右键单击该项目,然后转到“属性”->“构建事件”->“构建后命令行”。
然后输入:
这有帮助吗?
Right-click the project, then go to Properties->Build Events->Post-build command line.
Then type this in:
Does that help?
我们使用以下构建后事件将插件 dll 复制到 Web 应用程序的插件目录:
这适用于物理路径可能不同的多台计算机,但依赖于相对于 $(SolutionDir) 的目标。
We use the following post build event for copying plugin dlls to the web application's plugin directory:
This works across multiple machines where the physical path may be different, but relies upon the destination being relative to the $(SolutionDir).
对于那些想要从输出文件夹复制所有内容的人
For those of you that want to copy everything from the Output folder