<probing> Element
Specifies application base subdirectories for the common language runtime to search when loading assemblies.
<probing privatePath="paths"/>
The following sections describe attributes, child elements, and parent elements.
Attributes
| Attribute | Description |
|---|---|
| privatePath | Required attribute. Specifies subdirectories of the application's base directory that might contain assemblies. Delimit each subdirectory with a semicolon. |
Child Elements
None.
Parent Elements
| Element | Description |
|---|---|
| assemblyBinding | Contains information about assembly version redirection and the locations of assemblies. |
| configuration | The root element in every configuration file used by the common language runtime and .NET Framework applications. |
| runtime | Contains information about assembly binding and garbage collection. |
Reference
Runtime Settings SchemaConcepts
Specifying an Assembly's LocationHow the Runtime Locates Assemblies
Other Resources
Configuration File Schema for the .NET FrameworkThe <runtime> element must be after the <configSections> element in your app.config file or you will get an exception when your app is loading.
This was noted by user 'akcoder' for .NET Framework Version 3.0. I have also encountered the same problem on Version 2.0.
- 1/15/2009
- penfold_001