Strong Naming in .NET

  • Thread starter Thread starter C
  • Start date Start date
C

C

Hi,

I have an ASP.Net app that uses some assemblys I have
develoed in VB.NET.

I am looking to strong name one of my assembly's as it is
used by another application.

Does anyone know any good articles/sites on this topic
that go through the steps required.

Thanks,
C
 
Hi, there are essentially 2 basic steps needed....of course, furthur
tweaking is always possible.

Use the sn utility to generate public private key pair and then use that
file within your assembly. You can sign the assembly with the public key of
the generated file. eg like <Assembly: AssemblyKeyFile("MyKeyz.snk")>

Here is a good read
http://www.c-sharpcorner.com/Code/2003/March/StrongNamedAssemblies.asp

You may want to read my post in this newsgroup as well.
Its just a few posts below yours...check it out at

Strong Named assemblies - Tamper Proof ?

hth

--
Thank you very much

Warmest Regards,
Softwaremaker (WilliamT)
Software Architect
+++++++++++++++++++
 
Back
Top