How to fix worker runtime metadata for Azure .net8 isolated worker model functions?
I have upgraded a .net6 Azure function (using an App Service plan, not Consumption) to an isolated .net8 function. All my assemblies have <TargetFramework>net8.0</TargetFramework> The function project has also <AzureFunctionsVersion>v4</AzureFunctionsVersion> <OutputType>Exe</OutputType> and also <ItemGroup> <Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" /> </ItemGroup> (…