Where should I set generatePublisherEvidence to false in an asp.net app?
- by Quintin Par
To reduce the loading time this blog suggests we set generatePublisherEvidence to false in the app.config for executables.
<configuration>
<runtime>
<generatePublisherEvidence enabled="false"/>
</runtime>
</configuration>
Where do I set it for web apps? The blog suggests that this does not go to the web.config. Where else should I put it?