The framework runtime settings give you the ability to specify the parameters of the Framework runtime components, such as assembly redirection. Refer to .Net Framework documentation for further information about framework runtime settings, which can be found here.
Note that for best performance in multi-core, free-threaded loading of the rule engine, the gcServer element should have enabled set to "true".
Example
<configuration>
...
<runtime>
<gcServer enabled="true" />
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity
name="Oracle.DataAccess"
publicKeyToken="89b483f429c47342" />
<bindingRedirect
oldVersion="2.0.0.0-99.0.0.0"
newVersion="2.102.2.20"/>
<!-- If using an ODP.NET endpoint, set this to version of ODP.NET you have installed. -->
</dependentAssembly>
</assemblyBinding>
</runtime>
...
</configuration>
Comments
0 comments
Please sign in to leave a comment.