http://stackoverflow.com/questions/959337/what-are-the-available-runtime-settings-for-app-config-files-in-net/959355
In the app.config file of a .NET application there is a
element that allows you to configure various behaviours of the CLR, usually for backwards compatibility with legacy behaviours.
For example:
<configuration>
<runtime>
<legacyUnhandledExceptionPolicy enabled="true"/>
<legacyCorruptedStateExceptionsPolicy enabled="true"/>
runtime>
configuration>
No comments:
Post a Comment