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.
我正在编写一个引用许多程序集的 Web 项目。我想为根命名空间中的子命名空间创建一个单独的程序集,而不创建不同的项目。但我无法做到这一点。我希望你能帮助解决这个问题。我想,要么我可以解释,要么你理解我。
谢谢大家。
Visual Studio 将每个项目编译为一个 DLL。您不能构建项目并将输出发送到 2 个不同的 dll。
如果您查看 Visual Studio 中的项目属性,则“程序集名称”只有一个字段
最简单的解决方案是将子命名空间中的代码移动到单独的项目中。