如何在 BHO 中设置发布者名称
我用 C# 为 Internet Explorer 编写了 BHO 和工具栏。它们正在安装并正常工作。在 IE8 的管理加载项窗口中,我可以看到我的 BHO 和工具栏。但是,两者的发布者名称都设置为“控件名称不可用”。如何设置发布者名称?
I have written a BHO and a toolbar for Internet Explorer in C#. They are getting installed and working properly. In the manage add-ons window in IE8, I am able to see both my BHO and toolbar. But, the publisher name of both is set to "Control name is not available". How can I set the publisher name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
两件事:
Two things:
签署你的 Dll。 .net 中的 assemblyinfo 文件属性 [assemble: AssemblyCompany("add Publisher Name Here ")] GOES 作为 BHO 中的发布者名称。
谢谢
Signed your Dll. assemblyinfo file in .net the attribute [assembly: AssemblyCompany("add Publisher Name Here ")] GOES as publisher name in a BHO..
Thanks
在 AssemblyInfo.cs 文件中设置以下信息后,构建 DLL。
当您注册该 DLL 时,请使用以下命令。
现在它将在 IE 的管理插件中显示您的发布者名称。
希望这更有意义。
After set following info in AssemblyInfo.cs file build the DLL.
When you register that DLL then use the following command.
Now it will show your publisher name in manage addon in IE.
Hope this make more sense.