Error during build of project
During a build of a VB2005 Beta2 project, it stops with the error below:-
Error 1 Unable to emit assembly: Referenced assembly 'QCGIconComboBox' does not have a strong name
I have recompiled the assembly under Beta2 but the problem will not go away.
Has anyone got any ideas on how to resolve this issue?
Regards,
[335 byte] By [
ajb2528] at [2007-12-16]
Does your project have a strong name? If the project assembly has a strong name, all of the referenced COM controls have to have a strong name. QCGIconComboBox would need to be strong named if you wanted the whole project to have a stoing name, then. Make sense?
You should be able to use tlbimp to make a strong name for the control.
tlbimp.exe QCGIconComboBox.dll /keyfile:myKeyFile.snk /out:QCGIconComboBoxI.dll
Or something of the sort should help you out.
S