安装 dotless 时 Web 配置出错

Error in web config when installing dotless

我有一个非常基本的空 asp.net 应用程序,并将 nuget 包 dotless 添加到项目中。

我一这样做就收到服务器错误

The requested page cannot be accessed because the related configuration data for the page is invalid.

据我所知,这可能是由于读取网络配置文件中的信息时出现问题。

<configuration>
 <system.web>
<compilation debug="true" targetFramework="4.5"/>
<httpRuntime targetFramework="4.5"/>
<httpHandlers>
  <add path="*.less" verb="GET" type="dotless.Core.LessCssHttpHandler, dotless.Core"/>
</httpHandlers>
</system.web>
<system.webServer>
 <validation validateIntegratedModeConfiguration="false"/>
<handlers>
<add name="dotless" path="*.less" verb="GET" type="dotless.Core.LessCssHttpHandler,dotless.Core" resourceType="File" preCondition=""/>
</handlers>
</system.webServer>
<configSections>
<section name="dotless" type="dotless.Core.configuration.DotlessConfigurationSectionHandler, dotless.Core"/>
</configSections>
<dotless minifyCss="false" cache="true" web="false" strictMath="false"/>
</configuration>

发生在阅读的时候configSections

我该如何解决这个问题?

找到问题了。 configSections需要坐在里面configuration