Illustrate Delay Signing Process of an Assembly in .NET?When you
are dealing with assemblies, you will create strong name for it to ensure
its uniqueness. But if you are going to create the strong name during
development process, it will be known to all developers and the secrecy
will not be maintained. This is not recommended. To ensure that strong names are not exposed to developers, you delay signing your project with the strong name to a later point of time. This is known as delay signing. To achieve delay signing, follow the steps given below: " Generate a public key by executing the sn.exe " Associate
two custom attributes of System.Reflection in the code corresponding to
the assembly as shown below: " Now
the assembly doesn't have a strong name signature that is valid. Hence
verification of this signature has to be disabled until the strong name
is signed. This can be done by using the following command: " Once
when the development is freezed and the project is ready to be delivered,
you can sign your project with the strong name key pair using the following
command:
FREE
Subscription
Subscribe
to our mailing list and receive new articles Note
: We never rent, trade, or sell my email lists to Visit
.NET Programming Tutorial Homepage ______________________________________________________ |