2015-04-22 124 views
3

如何解決此程序集引用警告?裝配參考警告?

System.Net.Http.Formatting.dll:警告CS1701:假設集引用 'Newtonsoft.Json,版本= 4.5.0.0,文化=中性 公鑰= 30ad4fe6b2a6aeed' 匹配「Newtonsoft.Json, 版= 6.0.0.0,文化=中性公鑰= 30ad4fe6b2a6aeed」, 您可能需要提供運行時策略Newtonsoft.Json.dll:(位置與先前警告符號的 )

+0

嘗試更新軟件包。 Update-Package Newtonsoft.Json – Sandeep

回答

0

嘗試添加bindingRedirect您應用程序的web.config文件。

<runtime> 
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> 
    <dependentAssembly> 
     <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> 
     <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" /> 
    </dependentAssembly> 
    </assemblyBinding> 
</runtime> 
+0

bindingRedirect已經添加到配置文件中。 – Khushi

+0

將其添加到machine.config文件 – Andrus