为什么设置shadowCopyBinAssemblies =" false"没有效果?

时间:2014-08-27 04:56:57

标签: c# asp.net iis

我正在尝试关闭IIS中的卷影复制,以提高生产效率。

但是在我的web.config中添加它没有任何效果。这是我的web.config

<?xml version="1.0"?>
<configuration>
    <system.web>
      <compilation debug="true" targetFramework="4.5" />
      <httpRuntime targetFramework="4.5" />
      <hostingEnvironment shadowCopyBinAssemblies="false" />
    </system.web>
</configuration>

当我点击网址时,第一次需要的时间也一样长,而且 文件仍然出现在 C:\ Windows \ Microsoft.NET \ Framework64 \ v4.0.30319 \ Temporary ASP.NET Files 所以它似乎没有效果。

IIS 7.5和Windows 7.我正在使用一个很小的Hello World ASPX页面进行测试。 任何想法为什么这不起作用?这个设置是否被覆盖了?

0 个答案:

没有答案