忽略引用程序集中的特定符号
我有两个使用同一批代码的托管程序集。当引用一个到另一个时,编译器会像预期的那样抱怨多次重新定义。在项目编译期间是否可以忽略引用程序集中存在的通用符号?或者也许有其他方法/解决方法来允许这样的设置?
I have two managed assemblies that use a common batch of code. When referencing one to the other, the compiler complains about multiple redefinitions, as expected. Would it be possible to ignore the common symbols present in the referenced assembly during project compilation ? Or perhaps some other method/workaround to allow such a setup ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据上面的评论,通过将公共代码的访问修饰符更改为“私有”来修复。
As per above comment, fixed by changing the common code's access modifiers to 'private'.