我一直在我的 azure 函数应用程序中使用 azure function V2(.net core 2.1)。我一直在System.ServiceModel.Primitives
为我的函数 App 使用 nuget,它ServiceBusEnvironment
在其中使用包。
我能够编译代码并运行该函数。调用该函数时,出现此运行时错误。
Could not load type 'System.ServiceModel.Channels.IBindingRuntimePreferences'
from assembly 'System.ServiceModel, Version=4.0.0.0'
我google了很多东西。但没有运气。
然后我尝试将我的天蓝色功能从 V2 降低到 V1(.net Framework 4.7),它又开始工作了。
在 V2 的情况下,我需要知道我做错了什么。在 V2 的情况下,我怎么能不得到错误?有相同的解决方案吗?