The Assemblies
collection contains one or more CodeBaseHint
rows, which can tell the Assembly Resolver where to find a particular assembly. These codebase “hints” are always attempted before the standard probing URLs are attempted. The CodeBaseHint
row contains a number of properties which describe the assembly, as well as the location where the assembly can be found:
Property Name | Supported Values | Description |
---|---|---|
Name | Any string | Name of the assembly |
Originator | String form of originator (8-byte hash of public key) | Originator of the assembly |
Version | String form of version: w.x.y.z | Version of assembly |
CodeBase | String: valid URL | Codebase URL where the assembly can be found |
Example:
<Assemblies> <CodeBaseHint Name="[name]" Originator="[orig]" Version="[ver]" CodeBase="[URL]"/> </Assemblies>