I am working on a toolbar for IE using .NET. I am currently embedding my .NET assemblies using gacutil and registering my COM assembly with regasm.
I want to create a customization (MSI) for a project, but I cannot register types. I have everything in the GAC folder of the installation project, but I canβt find a way to run regasm essentially - and I donβt want to include it in the project. The / regfile option does not match type registration.
I tried using tlbexp to export the .tlb file and included it in the MSI application folder, but the problem seems to be fixed. If I run the MSI installer and manually run regasm on my assembly, then everything works fine. Any ideas?
Thanks.
source
share