GTK+在 MonoDevelop 中添加引用
我目前正在开发一个 GTK# 应用程序,它将使用一个组件来查看网页并连接到 FTP 服务器。于是我找到了这两个库,用于查看网页的Webkit和用于FTP连接的gFTP。
现在我已经使用 Synaptic 包管理器添加了包。包引用被添加到名为“/usr/lib/pkconfig/”的文件夹中。
显然这应该将库添加到我可以在 MonoDevelop 中使用的引用列表中,但它们都没有显示。 =/
我已经尝试重新启动 MonoDevelop 和我的计算机(是的,我是 Windows 用户),但它不起作用。有什么建议吗?
I am currently developing a GTK# application which will use a component to view a web page and make connection to an FTP server. So I found these two libraries, Webkit for viewing the web page and gFTP for the FTP connection.
Now I've added the packages using Synaptic Package Manager. And the package references are added to a folder called '/usr/lib/pkconfig/'.
Apparently this should add the libraries to the references-list I can use from in MonoDevelop, but neither of them show up. =/
I already tried rebooting MonoDevelop and my computer (yes, I am a Windows-user), but it did not work. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Monodevelop 仅在引用列表中显示托管库(.net 程序集)。您安装的是本机库,不能直接在 gtk# 中使用。
Monodevelop only shows managed libraries (.net assemblies) in the references list. What you installed are native libraries which can't be directly used in gtk#.