Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 ASP.NET 项目引用了另一个项目的 DLL。
每次重新编译 DLL 时,我都必须执行“更新参考”。没什么大不了的,但这能以某种方式自动化吗?
您可以将两个项目添加到同一个解决方案中,并创建项目引用而不是 DLL 引用。然后,当您重新编译站点时,如果 DLL 项目发生更改,它将自动重新编译。
“另一个项目”实际上是另一个解决方案吗?如果它们在同一个解决方案中,如果您添加了对项目的引用而不是 .dll 文件,它应该会自动工作。