部署BHO错误
我使用 C# .NET 开发了一个 BHO。 然后我创建一个部署项目并在另一台计算机上测试设置。 它因德语错误而失败。 翻译如下:无法注册 ieframe.dll HRESULT:-2147467263
ieframe.dll 被识别为依赖项并自动添加到安装项目中。
其实我觉得应该很简单。 “项目”仅包含一个 dll。 我只想在 msi 内执行 regasm 操作。
我使用了一些教程和示例,但我不明白。
有什么建议么?
I developed an BHO using C# .NET. Then I create an deployment project and testet the setup on a other machine. It fails with an error in german. translation is something like: cant register ieframe.dll HRESULT: -2147467263
ieframe.dll was recognized as an dependency and was added to the setup project automatically.
actually I think it schold be simple. The "project" contains only one dll. I only want to perform the regasm-action within an msi.
I used some tutorials and examples but I dont get it.
any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该分发/注册 ieframe.dll,因为它已经在客户的计算机上。 但您可能根本不应该分发 C# BHO,原因如下: 如何用纯托管 C# 编写 IE 8 插件
You should not be distributing/registering ieframe.dll, as that's already on the customer's machine. But you probably shouldn't be distributing a C# BHO at all, for the reasons explained over here: How do I write an IE 8 Add-On in pure managed C#