Jump to: navigation, search

Difference between revisions of "Configuration Files/Runtime.config"


(Created page with "In this file runtime specific configurations can be defined, as for example the ''probing'' path for plugins....")
 
Line 1: Line 1:
 
In this file runtime specific configurations can be defined, as for example the ''[[Injection_Management#Plugin_Folders|probing]]'' path for [[Injection_Management|plugins]].
 
In this file runtime specific configurations can be defined, as for example the ''[[Injection_Management#Plugin_Folders|probing]]'' path for [[Injection_Management|plugins]].
  
 +
== Example ==
 
<syntaxhighlight lang="xml">
 
<syntaxhighlight lang="xml">
 
<?xml version="1.0" encoding="UTF-8"?>
 
<?xml version="1.0" encoding="UTF-8"?>
Line 9: Line 10:
 
</runtime>
 
</runtime>
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
== See also ==
 +
* [[Configuration_Files]]
 +
 +
[[Category:Installing]]
 +
[[Category:Injecting]]

Revision as of 14:23, 12 May 2015

In this file runtime specific configurations can be defined, as for example the probing path for plugins.

Example

<?xml version="1.0" encoding="UTF-8"?>
<runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
                <probing privatePath="bin\lib; bin\Injection"/>
        </assemblyBinding>
</runtime>

See also