构建后复制release dll?

发布于 2024-11-04 05:00:36 字数 104 浏览 1 评论 0原文

我正在使用 nuget,在构建我的发布 dll 后,我希望它将该 dll 复制到项目文件夹中存在的 package\lib 文件夹中。

这是怎么做到的?

/拉塞

I'm using nuget and after I build my release dll, I would like it to copy that dll to the package\lib folder that exists in the projects folder.

How is that done?

/Lasse

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

九公里浅绿 2024-11-11 05:00:36

在项目属性下,添加以下构建后事件:

copy "$(TargetPath)" "$(SolutionDir)package\lib"

请务必修改 nuget 包根目录的路径。我在这里假设它是\package

Under project properties, add the following post-build event:

copy "$(TargetPath)" "$(SolutionDir)package\lib"

Be sure to modify the path to your nuget package root. I assumed here that it was <Solution>\package

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