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 difference between mutable and immutable in c#?
What is definition in c#?
How does foreach loop work in c#?
What is the purpose of escape sequence?
How many parameters can a method have c#?
What is variable and its classification?
What is iqueryable in linq?
What is a ienumerator?
if we are updating a database using thread, and mean while application crashes or thread being aborted then what will happen in Database? Rollback or Database will be updated? Please explain with different scenario.
What do you mean by thread safe in c#?
What is console based application?
What is exe file in c#?
Explain how can you clean up objects holding resources from within the code?
List the 5 different access modifiers in c#?
how to Create a datagridview control with check box column with 8rows in it, the maximum number of check boxes checked should be 3, when user checks the 4th corresponding message should be displayed and check box should be checked. User can uncheck the checked boxes Note: read-only property should not be used