views:

265

answers:

1

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?

+1  A: 

The comments on the same blog entry mentions to put it in aspnet.config in C:\windows\Microsoft.NET\Framework\vxxxxx. That's where I put it. Could not find setting specific to one app.

Panji