How to set the .NET Framework Trust level yourself
Article Number: 3072 | Rating: 1.3/5 from 6 votes | Last Updated: Mon, Sep 12, 2016 3:39 PM
You can set the trust level yourself by making a change to the web.config configuration file for your web application(s);
this only applies to IIS8 hosting packages.
<configuration>
<system.web>
<trust level="Full" />
</system.web>
</configuration>
You can choose from the following policy names:
- Full
- High
- Medium
- Low
- Minimal
- Custom (= modified Medium trust policy)