When I am using Azure SignalR version 1.0.2 with latest Azure Function version 3.0.3, the function app runs fine locally, but when published (Zip Deploy) on Azure Portal, I am getting the following error:
The Nuget Packages in my project are:
The function app runs locally as expected but on the Azure portal I get the following error. How to resolve this issue?
One thing I found help with was that on portal if I change the host.json from:
Original:
{
"version": "2.0",
"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle",
"version": "[1.*, 2.0.0)"
}
}
After Change:
{
"version": "2.0"
}
Then it works exactly fine, but this change adds a manual step to my deployment which I dont want, currently my deployment is through azure pipelines