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
本文介绍了解决CentOS7上部署.NET Core 2应用时遇到的依赖问题。主要针对缺少Microsoft.AspNetCore.Antiforgery组件导致的应用无法启动的情况,并提供通过yum安装dotnet-hosting-2.0.x来解决此问题的方法。

被折叠的 条评论
为什么被折叠?



