What are assembly attributes?what are assembly version requirements and security identity?what is public key in assembly?

Questions by gaffarshaik

Showing Answers 1 - 6 of 6 Answers

Vijay Sitlani

  • Jan 30th, 2007
 

Assembly attributes - General Information about an assembly is controlled through Assembly attributes.



Assembly Versioning - Version information for an assembly consists of the following four values:Major VersionMinor Version Build NumberRevision// You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below:[assembly: AssemblyVersion("1.0.*")]



Public Key - Public Key is must in case you want to give assembly the strong name.

  Was this answer useful?  Yes

Vijay Sitlani

  • Jan 30th, 2007
 

General Information about an assembly is controlled through the assembly attributes.Version information for an assembly consists of the following four values:Major VersionMinor Version Build NumberRevisionYou can specify all the values or you can default the Revision and Build Numbers by using the '*' as shown below:[assembly: AssemblyVersion("1.0.*")]Public Key is required when you want assembly to be strong named.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions