无法加载文件或程序集' Newtonsoft.Json,Version = 10.0.0.0,Culture = neutral,PublicKeyToken = 30ad4fe6b2a6aeed'在Azure功能中

时间:2017-11-17 12:50:06

标签: c# azure json.net azure-functions serverless

我从Azure功能(服务总线队列触发器)中引用了一个C#库项目。该库引用了Newtonsoft nuget版本10.0.1。 在我的visual studio上本地运行该函数时,它会出现此错误。

{"Could not load file or assembly 'Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The system cannot find the file specified.":"Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed"}

我尝试降级到10.0.0版,但问题出在那里。

我偶然发现了这个问题链接:https://github.com/Azure/azure-functions-vs-build-sdk/issues/107。 并尝试降级到9.0.1。但即使这样,错误仍然会发生。

注意:库项目引用了几个也引用Newtonsoft的其他库项目。我保留了相同版本的nuget所有子项目。

如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

将所有子库中的所有Newtonsoft dll指向版本9.0.1解决了这个问题。

相关问题