Open Tom-RedCactus opened 7 months ago
There are of course plans to update to .NET 8. However, we are still waiting as Microsoft has not yet released the necessary updates to support it.
Thank you for the update. We'll patiently await Microsoft's update
@shibayan Eventually the functions should be migrated to isolated-mode, right?
@marthijn Starting with .NET 10, only Isolated will be supported, so we are considering migrating at that time. We would like to remain In-Process during .NET 8.
@shibayan Any update? As nov 12 is coming very soon.
@shibayan Do you expect to update the app soon? Otherwise, we have to look for another solution in the meantime.
.NET 8 support is already available for new deployments with In-Proc support. Existing deployments can be upgraded in-place to .NET 8 by executing the following command
az functionapp config set -g <groupName> -n <appName> --net-framework-version v8.0
az functionapp config appsettings set -g <groupName> -n <appName> --settings FUNCTIONS_INPROC_NET8_ENABLED=1
Received the following email from Microsoft: Support for .NET 6 ends on 12 November 2024 upgrade your Azure Functions apps to .NET 8
Is it possible to update the function app to .NET 8?