Where should I set generatePublisherEvidence to false in an asp.net app?
Posted
by Quintin Par
on Stack Overflow
See other posts from Stack Overflow
or by Quintin Par
Published on 2010-05-04T08:49:44Z
Indexed on
2010/05/30
13:52 UTC
Read the original article
Hit count: 300
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?
© Stack Overflow or respective owner