MonoDevelop 2.4:帮助查找 dll
我正在尝试构建 MonoDevelop 2.4 加载项,但我需要名称空间为 MonoDevelop.Projects.Gui 的 dll。有谁知道这个命名空间存储在哪个dll中?有人告诉我命名空间位于 MonoDevelop.Ide.dll 中,但是当我将 dll 添加到 MonoDevelop 项目时,命名空间未解析。
I am trying to build a MonoDevelop 2.4 add-in but I need the dll with the namespace of: MonoDevelop.Projects.Gui. Does anyone know what dll this namespace is stored in? I was told that the namespace was in MonoDevelop.Ide.dll but when I added the dll to the MonoDevelop project the namespace did not resolve.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MonoDevelop 2.4 中不再存在此命名空间。那里的类已移至 MonoDevelop.Ide.* 命名空间。您可以尝试在 MonoDevelop.Ide、MonoDevelop.Ide.Gui、MonoDevelop.Ide.Projects 或 MonoDevelop.Ide.Projects.OptionPanels 中查找。
This namespace doesn't exist anymore in MonoDevelop 2.4. The classes that were there have been moved to MonoDevelop.Ide.* namespaces. You can try looking in MonoDevelop.Ide, MonoDevelop.Ide.Gui, MonoDevelop.Ide.Projects or MonoDevelop.Ide.Projects.OptionPanels.