我最近在使用xulrunner和我的C#程序时遇到了问题。我一直在使用xulrunner和GeckoFX几周,但后来我收到了这个错误信息:
在'C:.... \ bin \ Release'中找不到xulrunner。
我在开始时调用Xpcom.Initialize()
并尝试删除xulrunner文件夹并将其重新添加到我的项目中。我还点击了xulrunner文件夹中的所有文件,并将Copy to output目录设置为Always。有没有其他人有这个问题?我在Google上发现没有相关结果。
答案 0 :(得分:0)
您可以将Xulrunner
文件夹复制到项目中,并将文件夹属性中显示的每个内容设置为Build Action
到Content
和Copy to output Directory
到Copy Always
。它将在发布或输出目录中创建xulrunner
文件夹。您可以采取其他方式,复制xulrunner
下的bin/release
文件夹并设置初始化路径
Xpcom.Initialize(AppDomain.CurrentDomain.BaseDirectory + "xulrunner");