aravindM365

Results 6 comments of aravindM365

> > I am stuck with this issue as well. Does this have a resolution? > > @mtv-tuanva, @aravindM365, try adding `true` inside the `` section in your csproj file....

You can try adding the Extension Bundle in `host.json` to resolve this issue. ``` { "version": "2.0", "extensionBundle": { "id": "Microsoft.Azure.Functions.ExtensionBundle", "version": "[4.0.0, 5.0.0)" } } ```

That's strange because ours is also compiled C# code but adding the extension bundle resolved the original error of this thread. Here is the complete `host.json` in case it helps....

After the .Net 8 upgrade, everything worked fine locally. I only saw the original error mentioned on this thread when I published my function app to Azure. Sounds like our...