Umbraco在开发服务器上得到错误



我刚刚将本地版本发布到开发服务器。我的本地工作完美,但开发人员有一个错误:

Could not load file or assembly 'System.Net.Http.Formatting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

有谁知道我怎么修理它吗?

我开始使用VS 2015,因为nuget版本。现在我在输出框中得到了一些不同的错误:

 No way to resolve conflict between "System.Net.Http.Formatting, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" and "System.Net.Http.Formatting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35". Choosing "System.Net.Http.Formatting, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" arbitrarily.
1>  Consider app.config remapping of assembly "System.Net.Http.Formatting, Culture=neutral, PublicKeyToken=31bf3856ad364e35" from Version "5.0.0.0" [] to Version "5.2.3.0" [F:ProjectsfrsfrsbinSystem.Net.Http.Formatting.dll] to solve conflict and get rid of warning.
1>  Consider app.config remapping of assembly "System.Web.WebPages, Culture=neutral, PublicKeyToken=31bf3856ad364e35" from Version "1.0.0.0" [] to Version "2.0.0.0" [F:ProjectsfrsfrsbinSystem.Web.WebPages.dll] to solve conflict and get rid of warning.
1>  Consider app.config remapping of assembly "System.Web.Mvc, Culture=neutral, PublicKeyToken=31bf3856ad364e35" from Version "3.0.0.0" [] to Version "4.0.0.0" [F:ProjectsfrsfrsbinSystem.Web.Mvc.dll] to solve conflict and get rid of warning.

也许这会有帮助https://our.umbraco.org/forum/getting - started/installing umbraco/53820 - -不-加载文件或-装配- systemnethttp - -升级后- v - 621

<dependentAssembly>
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />

:

<dependentAssembly>
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />

我在《Umbraco》中遇到了同样的问题。我已经安装了Umbraco v7.4.3,并在其中尝试了Ucalendar包。您必须删除Package并恢复app_dataconfig文件夹。

相关内容

  • 没有找到相关文章

最新更新