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]
# 1
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

BillSempf at 2007-9-9 > top of Msdn Tech,Visual Basic,Visual Basic General...
# 2
Bill,

Thanks for the reply. I have changed the security settings for the main project and the error has now disappeared.

Regards,

ajb2528 at 2007-9-9 > top of Msdn Tech,Visual Basic,Visual Basic General...