System.Xml引用错误

时间:2012-12-27 11:34:32

标签: c# silverlight system.xml

我在项目中使用了HtmlAgilityPack,并且出现了未引用System.Xml 2.0.0.0的错误。我从Silverlight文件夹添加它,它工作。但现在我得到了同样的错误,但它想要版本2.0.5.0。如果我添加它然后它工作,但HtmlAgilityPack不起作用。

1 个答案:

答案 0 :(得分:0)

请勿将其复制到您的目录中。您需要在应用程序配置文件中添加程序集重定向策略,该策略告诉加载程序在请求V2.0.0.0时使用V2.0.5.0。

请参阅http://msdn.microsoft.com/en-us/library/7wd6ex19.aspx

这样的事情可以解决问题:

<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Xml"
                          publicKeyToken="7cec85d7bea7798e"
                          culture="neutral" />
        <bindingRedirect oldVersion="2.0.0.0"
                         newVersion="2.0.5.0"/>
     </dependentAssembly>
   </assemblyBinding>
  ...