ASP.NET bin 文件夹中的 dll 如何更新?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当网站构建时,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.
构建网站时,您必须引用其他文件夹中的 DLL。
When building the web site, you must be referencing the DLLs from the other folder.