作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个在完整的.net Framework 4.6.1上运行的asp.net core 2.0应用程序。它在本地运行良好,但是当我将其部署到Azure时,出现以下错误:
FileLoadException: Could not load file or assembly 'System.Runtime, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
最佳答案
如果您创建针对[.NET Core]
平台的ASP.NET Core 2.0 Web应用程序,将其部署到Azure(或本地部署),然后将其更改为针对[.NET Framework]
,则可能会发生这种情况。
例如如果你改变
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net461</TargetFramework>
</PropertyGroup>
[.NET Core]
平台。 关于.net - FileLoadException : Could not load file or assembly System.运行时,版本= 4.2.0.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45894659/
我是一名优秀的程序员,十分优秀!