使用Web服务部署ASP Netcore 2.1

时间:2019-01-26 11:52:54

标签: c# asp.net-core .net-assembly

我也有asp net core 2.1和集成的Web服务。在我的开发环境中,一切正常。但是在实际环境中,我有一个错误:

System.IO.FileNotFoundException: Could not load file or assembly 
  'System.ServiceModel.Primitives, Version=4.5.0.3

我安装了System.ServiceModel 4.5.3,它也包含在运行时文件夹中,但找不到它。为什么?我想念的是什么?

谢谢

1 个答案:

答案 0 :(得分:0)

您对软件包的引用可能是本地的。如果您使用的是ReSharper,则有时会在本地引用Nuget包(我也有类似的经验)。

检查.csproj文件下的引用,如果在本地引用了它们,请删除它们,然后使用Nuget Package Manager重新安装。这需要解决您的问题。