How do I deploy Isolated Azure Function App to Azure with multiple artifact files?
I have upgraded my function app to .NET 8 using the isolated worker model and am trying to deploy new builds to Azure. With the change to the isolated worker model, my build artifacts now contain two zip files, MyFunctionApp.zip. and WorkerExtensions.zip. This causes the Azure Function App Deploy release pipeline task to fail with the following error “Error: More than one package matched with specified pattern: D:ar1a***.zip. Please restrain the search pattern.”
ExecutionContext’s implementation in Microsoft.Azure.Functions.Worker?
I was upgrading my Azure Function V1 written in net461 to Azure Functions V4 in net48 while doing there is some ExecutionContext
present in Microsoft.Azure.WebJobs
which is being used herestring appDirectoryPath = context.FunctionDirectory;
please help me find an implementation which I can use with Microsoft.Azure.Functions.Worker