What's the point of delay signing of an .NET assembly?
- by smwikipedia
I noticed that after I use AssemblyDelaySignAttribute to indicate that an assembly is in development and does not need to be signed now, I'll have to use sn -Vr foolib.dll to register for strong name verification to be turned off for this assembly.
What's the point of doing this circle? Why not just leave the assembly unsigned until it's fully done? Isn't that less bothering?