DLL compilation error - assembly strong name

A

Alan T

I have a project references a DLL(by Add Reference), so far so good.
However, if I change my application from exe to a class library and also
added a reference to that same DLL, I got a compilation error:
"Assembly generation failed -- References assembly 'OrderController' does
not have a strong name"

That OrderController was developed by another developer, I am not sure by
..NET or Java.
 
M

Marc Gravell

Strongly named assemblies must reference strongly named assemblies.

So either apply a strong name to OrderController, or remove the strong
name from your assembly.

Marc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top