美文网首页
C#:App.config读取自定义节点,未能加载文件或程序集

C#:App.config读取自定义节点,未能加载文件或程序集

作者: 天山的虫 | 来源:发表于2018-04-17 21:44 被阅读0次

    原因:

    在C#的App.config的配置节section中,type属性必须与程序集清单匹配

    举例:
    1)假设命名空间namespace为:Demo.XmlSection
    2)具体实现的类class为:DemoSection
    3)程序集为:Test
    4)配置文件:type = "Demo.XmlSection.DemoSection,Test"

    附上Xml具体配置:

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
      <configSections>
            <section name="editionTypeSection" type="DataExportTools.EditionTypeSection,DataExportTool"/>
      </configSections>
      <startup> 
            <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
      </startup>
      <editionTypeSection baseUrl="123" tokenUrl="456">    
      </editionTypeSection>
    </configuration>
    

    相关文章

      网友评论

          本文标题:C#:App.config读取自定义节点,未能加载文件或程序集

          本文链接:https://www.haomeiwen.com/subject/mnapkftx.html