I have been using the Microsoft.Azure.Functions.Worker.Sdk version 1.16.4 and all were working fine.
Today i updated the Microsoft.Azure.Functions.Worker.Sdk version to 1.17.4 and then the app started to hang and the console gave me this
I noticed that the host.json and local.settings.json file got automatically removed from the visual studio solution explorer. so i included them back to the project and rerunning the project still gave me the above error in the image. but when i downgraded the Microsoft.Azure.Functions.Worker.Sdk version to 1.16.4 then the host.json and local.settings.json show up again and the azure function app worked.
Why does it break on Microsoft.Azure.Functions.Worker.Sdk version 1.17.4?
Description
i have an azure function app running on :
dotnet: 8 function app version: v4 model: isolated
i have been using this function app to render razor components by setting the the csproj file to Sdk="Microsoft.NET.Sdk.Razor" referred at here
Steps to reproduce
I have been using the
Microsoft.Azure.Functions.Worker.Sdk
version 1.16.4 and all were working fine.Today i updated the
Microsoft.Azure.Functions.Worker.Sdk
version to 1.17.4 and then the app started to hang and the console gave me thisI noticed that the host.json and local.settings.json file got automatically removed from the visual studio solution explorer. so i included them back to the project and rerunning the project still gave me the above error in the image. but when i downgraded the
Microsoft.Azure.Functions.Worker.Sdk
version to 1.16.4 then the host.json and local.settings.json show up again and the azure function app worked.Why does it break on
Microsoft.Azure.Functions.Worker.Sdk
version 1.17.4?please help