I have an azure functions queue trigger. It's working fine locally but not when deployed. In Application Insights I could see the below error message & the queue trigger won't get invoked because of this exception. I had a .netcore 3.1 app with azure functions v3. Even I upgraded it to .net6.0 & azure functions v4. Also, I tried upgrading, downgrading & installing some packages still it didn't resolve the issue.
How to fix System.TypeLoadException - Error indexing method 'NameOfQueueTrigger'. Could not load type Azure.Core.SyncAsyncEventHandler from assembly 'Azure.Core'?
Microsoft removed the .NET 3.1 Support on Azure Portal Function App Deployment:
Created the .NET 3.1 Azure Function App in Local Environment (VS Code) with Queue Trigger - Tested Locally:
When deploying V3 Project to V4 Azure Portal Function App, got the below warning and deployed successfully after clicking the option “deploy anyway”:
Testing in Azure Portal:
I’ve migrated the Queue Trigger Function Project from .NET 3.1 to 6 and Azure Functions core tools version 3 to 4 with the below changes:
.csproj file code:
It asks to restore the missing dependencies after changing the versions in the
.csproj
file and click Restore them:Result:

For this error, check the following Steps:
local.settings.json
and in the Function Code are same and pointing to the correct storage account and Correct Queue name: