我读了很多文章,其中指定可以使用fcnMode="Disabled"
更改文件后禁用ASP.NET应用程序回收。我需要申请状态(例如错误统计信息)。
很好,但是如何在/bin
上禁用FCN但如何在/Views
上启用FCN以更新视图。
最奇怪的是,fcnMode="Disabled"
之后的IIS 8.5阻止了/bin
和/Views
中的回收,但没有更新/Views
中的* .cshtml视图。
IIS Express在我更新* .cshtml之后执行相同的更新视图。
我为IIS准备了这样的配置。
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.7.2"/>
<httpRuntime targetFramework="4.7.2" fcnMode="Disabled"/>
</system.web>
</configuration>