Our pipeline on Azure DevOps which has been working suddenly fails when running the Azure CLI command:
az functionapp config set name "appname" --resource-group "groupname" --slot "slot" --net-framework-version v7.0
The error it produces is
Invalid version: for runtime dotnet-isolated and os windows. Supported versions for runtime dotnet-isolated and os windows are: ['.4.8', '8', '7', '6']. Run 'az functionapp list-runtimes' for more details on supported runtimes.
Our azure function is version 4 running on .NET Core 7.0
Anyone know why all of a sudden it gives this warning? I've tried to use v7, 7.0 and 7 and they all produce the same warning.
Our Azure CLI version is 2.57.0. I check its release version page and I see nothing mentioned about .NET framework value being changed.