在 VS2010 中的构建后事件中将 bin 文件复制到物理文件位置

发布于 2024-10-12 00:20:01 字数 99 浏览 1 评论 0原文

我想将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

花伊自在美 2024-10-19 00:20:01

您想要添加类似以下内容:

xcopy /Q /Y "$(TargetPath)" "C:\path\to\somewhere\"

到项目属性页面的“构建事件”选项卡上的构建后事件。 /Y 将阻止它提示您确认覆盖。

如果您还需要复制 .pdb 文件,则需要类似以下内容:

xcopy /Q /Y "$(TargetDir)$(TargetName).*" "C:\path\to\somewhere\"

您可以通过单击“编辑构建后...”来查看更多替换标记($XXX 值)。 属性选项卡中的按钮,然后展开宏>> 按钮。

You want to add something like:

xcopy /Q /Y "$(TargetPath)" "C:\path\to\somewhere\"

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:

xcopy /Q /Y "$(TargetDir)$(TargetName).*" "C:\path\to\somewhere\"

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.

∞觅青森が 2024-10-19 00:20:01

右键单击该项目,然后转到“属性”->“构建事件”->“构建后命令行”。

然后输入:

Cmd /C Copy "$(TargetPath)" "<YourTargetDirHere>"

这有帮助吗?

Right-click the project, then go to Properties->Build Events->Post-build command line.

Then type this in:

Cmd /C Copy "$(TargetPath)" "<YourTargetDirHere>"

Does that help?

酷遇一生 2024-10-19 00:20:01

我们使用以下构建后事件将插件 dll 复制到 Web 应用程序的插件目录:

复制 $(TargetPath) $(SolutionDir)Convergence.WebApp\home\plugins\$(TargetFileName)

这适用于物理路径可能不同的多台计算机,但依赖于相对于 $(SolutionDir) 的目标。

We use the following post build event for copying plugin dlls to the web application's plugin directory:

copy $(TargetPath) $(SolutionDir)Convergence.WebApp\home\plugins\$(TargetFileName)

This works across multiple machines where the physical path may be different, but relies upon the destination being relative to the $(SolutionDir).

二智少女猫性小仙女 2024-10-19 00:20:01

对于那些想要从输出文件夹复制所有内容的人

xcopy "$(TargetDir)*" "C:\testpublish\updater\"  /s /Y

For those of you that want to copy everything from the Output folder

xcopy "$(TargetDir)*" "C:\testpublish\updater\"  /s /Y
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文