Deploying v4 azure functions on .NET 6 via Visual Studio issue

Mikhail Delly 126 Reputation points
2022-01-12T10:55:07.863+00:00

I've faced up to a weird issue during deployment v4 azure functions on .NET 6 into the azure function apps.

I created a new function app in the azure
164285-image.png

And in the VS2022 (.NET 6) as well. After deployment via Visual Studio It seems that trigger integration menu doesn't work (spinner doesn't stop) and I am not able to reach the functionality to configure triggers etc.
It doesn't matter which triggers are used in functions (Http, EvendGrid...), still an issue.
164265-image.png

Obviously, it works fine on Core 3.1 and AF v3 but the same happened to existing function apps. After using cmds on the existing v3 function apps:

az functionapp config appsettings set --settings FUNCTIONS_EXTENSION_VERSION=~4 -n <APP_NAME> -g <RESOURCE_GROUP_NAME>
az functionapp config set --net-framework-version v6.0 -n <APP_NAME> -g <RESOURCE_GROUP_NAME>

the integration menu will be unreachable
!Note Also the issue isn't reproduced when the function was added manually via the azure portal but it's not a way around

The weirdest thing is that adding extension bundles fixes the issue but even adding all packages from extension bundles one by one using NuGet (.NET approach) doesn't help

*"extensionBundle": {
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
"version": "[4.0.0, 5.0.0)"
}

According to the docs extension bundle approach is used in non-.NET languages which is not our case and it looks like it doesn't have an impact on extension.json file.

Did someone face up to a similar issues? If this a bug is this any way to solve this issue?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,289 questions
Azure Event Hubs
Azure Event Hubs
An Azure real-time data ingestion service.
558 questions
Azure Event Grid
Azure Event Grid
An Azure event routing service designed for high availability, consistent performance, and dynamic scale.
316 questions
{count} votes

Accepted answer
  1. MughundhanRaveendran-MSFT 12,421 Reputation points
    2022-01-19T04:47:40.987+00:00

    @Mikhail Delly ,

    As mentioned in my comment, I also faced this issue and I had engaged the appropriate team to fix this issue. It has been fixed and its working as expected now. Please check and confirm. There were some templates that were missed during the deployment of V4 due to which the integration screen wasn't loading.

    Apologies for the inconvenience caused.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful