CentOS7 安装.netcore 2 部署应用出现An assembly specified in the application dependencies manifest (xxx.deps.

CentOS7 安装.netcore 2 部署应用出现An assembly specified in the application dependencies manifest (xxx.deps.json) 

# dotnet xxx.dll
Error:
  An assembly specified in the application dependencies manifest (xxx.deps.json) was not found:
    package: 'Microsoft.AspNetCore.Antiforgery', version: '2.0.1'
    path: 'lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll'
  This assembly was expected to be in the local runtime store as the application was published using the following target manifest files:
    aspnetcore-store-2.0.3.xml

复制代码

出现了这个错误,原因是未安装dotnet-hosting-2.0.x(你软件对应的.net core 版本)

使用yum 安装一下便解决了(这是当时的解决办法,没深究,希望对你们有效)

yum install dotnet-hosting-2.0.X

猜你喜欢

转载自blog.csdn.net/CsethCRM/article/details/81457119