Re: What does <assemblies> session do in Web.config
- From: "Plamen Ratchev" <Plamen@xxxxxxxxxxxxx>
- Date: Wed, 20 Dec 2006 21:36:09 -0500
The <assemblies> section is used to add an assembly reference to be used
during compilation. If you need to share your assembly across multiple
applications it must have a strong name (this means embedding a long public
key in the assembly definition). The public key is part of the identity of
the assembly. When other assemblies reference your strongly named assembly
they use a shortened version of the full public key called public key token.
For more info on the <assemblies> section see here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/gngrfassemblies.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/gngrfASPNETConfigurationSectionSchema.asp
Regards,
Plamen Ratchev
http://www.SQLStudio.com
"ad" <flying@xxxxxxxxxxxxxxx> wrote in message
news:usDw2NKJHHA.2236@xxxxxxxxxxxxxxxxxxxxxxx
I find an assemblies section in web.config.
There are some PublicKey in it.
What do these PublicKey do?
What does <assemblies> session do?
<assemblies>
<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Design, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B03F5F7F11D50A3A" />
<add assembly="System.Transactions, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=B77A5C561934E089" />
</assemblies>
.
- References:
- Prev by Date: Re: Parsing an uploaded text file
- Next by Date: RE: Programmatic Dropdown and SelectedIndexChanged event
- Previous by thread: What does <assemblies> session do in Web.config
- Next by thread: Parsing an uploaded text file
- Index(es):
Relevant Pages
|