CentOS7 安装.netcore 2 部署应用出现An assembly specified in the application dependencies manifest (xxx.deps.json)
时间:2017-12-10 14:38:24
收藏:0
阅读:1562
# 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.3
使用yum 安装一下便解决了
yum install dotnet-hosting-2.0.3
评论(0)