Currently Microsoft has introduced a new way to treat azure functions called isolated process and it's the only way to run Azure functions on .NET5.
I am trying to deploy a function app that is already running correctly on my local machine to Azure Func app through Azure DevOps. It deployed successfully but the functions don't work.
First in the deployment task I can't see .NET 5 appears as shown:
But I can see in the link here that the .NET 5 is supported as preview:
https://docs.microsoft.com/en-us/azure/azure-functions/functions-versions#languages
After deploying, I can see this error:
But I changed the configuration to this:
Also the function shown this error:
Also I can see that the function has seen as running on .NET 5 from here:
So not sure how to deploy this correctly. I know that the isolated process functions are just need the azure functions tools + running command line so not sure how to deploy it and also Microsoft didn't have any tutorial or doc about how to deploy it?