trying to use strong name

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

In my project I tryed to use strong name for some of my Assemblies but that
fails because some of my dependencies are not, themselves, strong signed.

What could I do?

1st. I could try to strong name all the assembly but some of them are
managed C++ and I didn't find how to give a strong name to these...

2nd. I'm using heaps of interop to system or custom C dll. what should I do
with these?
 
Lloyd,
1st. I could try to strong name all the assembly but some of them are
managed C++ and I didn't find how to give a strong name to these...

Use the AssemblyKeyFile or AssembyKeyName attribute, just like in
other languages.

2nd. I'm using heaps of interop to system or custom C dll. what should I do
with these?

They can't have and don't need to be strong named.


Mattias
 
Back
Top