为什么 Visual Studio 的“未使用的引用...”按钮不标记 System.Xml 和 System.Xml.Linq?
当我尝试删除所有未使用的引用时,我正试图完成 VB.NET 类库项目。我知道我没有明确使用 System.Xml 和 System.Xml.Linq 程序集中的任何内容,但“未使用的引用...”按钮永远不会将它们标记为删除。
事实上,我什至在一个空白项目上尝试过“未使用的引用...”,但它仍然从未标记它们。
我能想到的唯一原因是 mscorlib.dll 或 System.dll 正在使用 System.Xml.dll 或 System.Xml.Linq.dll。移除它们安全吗?
I was trying to finish up a VB.NET class library project when I tried to remove all unused references. I know for a fact that I'm not explicitly using any thing from the System.Xml and System.Xml.Linq assemblies yet the "Unused References..." button never flags them for removal.
In fact I even tried "Unused References..." on a blank project and it still never flagged them.
The only reason I could think of is that either mscorlib.dll or System.dll is using System.Xml.dll or System.Xml.Linq.dll. Are they safe to remove?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试删除它们并查看项目是否构建 - 这会告诉你。
Try removing them and see if the project builds - that will tell you.