strong naming an assembly that has non-strong named references?

  • Thread starter Thread starter SStory
  • Start date Start date
S

SStory

How can I strong name my assembly if it references 3rd part non-strong named
dlls?

I just want my part strong named--I don't care about their part.

Thanks,

Shane
 
How can I strong name my assembly if it references 3rd part non-strong named
dlls?

You can't. You either have to remove the reference to the non strong
named libraries (retrieve corresponding strong named ones or use
dynamic loading), or forget about strong naming your own.



Mattias
 
Thanks Mattias. I did remove the third party and wrote my own version of
what I was using it for.

Thanks,

Shane
 
Back
Top