ASP.NET bin 文件夹中的 dll 如何更新?

发布于 2024-11-27 13:15:02 字数 182 浏览 1 评论 0原文

bin 文件夹中有一些 DLL。我们在单独的解决方案中构建 DLL 并输出到不同的目录。现在,当我构建网站时,其 bin 文件夹中的 DLL 会自动更新为最新版本(来自这些目录)。现在我想知道这是如何运作的?我的意思是,构建如何知道从哪里提取 DLL 的最新部分?这对我来说看起来很神奇......

We have some DLLs in the bin folder. We build the DLLs in separate solutions and output to different directories. Now, when I build the web site, the DLLs in its bin folder gets updated automatically with the latest version (from those dirs). Now I am wondering how does that work? I mean, how did the build know from where to pull the latest bits of my DLLs? That looks magic to me...

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

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

发布评论

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

评论(2

無心 2024-12-04 13:15:02

当网站构建时,dll 将从引用的位置复制到目标目录。请检查每个引用的 CopyLocal 是否设置为 True 或 False。

When the website is getting build, the dlls will be copied to the target directory from the referenced location. Please check if the CopyLocal is set to True or False for each reference.

孤檠 2024-12-04 13:15:02

构建网站时,您必须引用其他文件夹中的 DLL。

When building the web site, you must be referencing the DLLs from the other folder.

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