How can we give strong name to assembly? What is satellite
assembly?
Answer Posted / fabin rodrigues
Before signing an assembly we have to prepare the strong
key.
Step 1:
Go to Command prompt type---> sn.exe -k "Path for saving
the key"
eg:
C:\Program Files\Common files\test> sn.exe -k "D:\test.snk"
the key pair will be generated in the particular location
Step 2:
Click on the Project Properties and Go to signing Tab
And browse for the strong key generated and and sign the dll
Satellite assemblies are assemblies which do not contain
source code. They only contain resource files. You can
create a satellite assembly using rsgen.exe and al.exe.
They are in binary DLL format which makes it easier to ship
it during deployment. So finally during deployment you do
not need to ship the resx files but only the compiled
satellite DLL.
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What is stringwriter c#?
Explain About a class access specifiers and method access specifiers.
What is the difference between dynamic and var in c#?
How the versioning applies to Assemblies or can you explain version numbers?
Do extension methods have to be static?
What is garbage collection? How to force garbage collector to run?
How do I join one form to another in c#?
Why do we use interfaces in c#?
what are the contents of an assembly ?
What is c# most used for?
Can you have more than one namespace in c#?
Explain namespaces in c#.
How do generics work in c#?
What is Assembly. and Describe type of assembly. why most developer happy with private assembly.
Why extension method is static?