2

添加时出现无法识别的配置部分编译异常

<?xml version="1.0"?>
<configuration>
  <configSections>
.....

  <compilation debug="true" targetFramework="4.0">
    <assemblies>
      <add assembly="System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    </assemblies>
  </compilation>

这是我的 app.config

如何将此添加到与 Windows 服务关联的 app.config 中?

4

1 回答 1

7

<compilation>必须是元素的子<system.web>元素 - 请参阅http://msdn.microsoft.com/en-us/library/s10awwz0.aspx中的更多信息。

于 2012-05-17T20:59:14.657 回答