修复/避免/忽略递归引用错误?
我需要两个相互引用的类库。
为什么?一种是用 C# 编译的,另一种是用 VB.NET 编译的。
如果我能够以某种方式以编程方式合并程序集,而不需要外部程序甚至扩展框架,那就更好了。
I need two class libraries that reference each other.
Why? One is compiled in C# and the other in VB.NET.
It would be better if I could somehow merge the assemblies programmatically, without requiring external programs or even the extended framework.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过程序集链接器工具将程序集编译为多模块程序集。
例如:
http://blogs.msdn.com/b/junfeng /archive/2004/07/15/183813.aspx
Compile your assemblies via assembly linker tool into multimodule assembly.
For example:
http://blogs.msdn.com/b/junfeng/archive/2004/07/15/183813.aspx