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?
问问题
1890 次
3 回答
2
Two things:
- Are you signing your .dll? You need to sign your modules as well as your installation package.
- Make sure your .dll has a VERSIONINFO resource in your .rc file. Here's the documentation which has a sample you can basically cut and paste.
于 2010-05-05T18:12:42.107 回答
0
Signed your Dll. assemblyinfo file in .net the attribute [assembly: AssemblyCompany("add Publisher Name Here ")] GOES as publisher name in a BHO.. Thanks
于 2010-10-02T20:10:20.053 回答
0
After set following info in AssemblyInfo.cs file build the DLL.
[assembly: AssemblyCompany("Your publisher name")]
When you register that DLL then use the following command.
regasm /register /codebase YourDLL.dll
Now it will show your publisher name in manage addon in IE.
Hope this make more sense.
于 2012-03-09T05:02:49.507 回答