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

Could not load file or assembly 'Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' in Azure Functions

我正在引用我的 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,但问题仍然存在。

我偶然发现了这个问题 link:https://github.com/Azure/azure-functions-vs-build-sdk/issues/107。 并尝试降级到 9.0.1。但即便如此,错误仍然存​​在。

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

如何解决这个问题?

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