We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4111f4 commit 1f77461Copy full SHA for 1f77461
articles/azure-functions/functions-versions.md
@@ -75,11 +75,8 @@ To migrate an app from 3.x to 4.x:
75
76
```bash
77
az functionapp config appsettings set --settings FUNCTIONS_EXTENSION_VERSION=~4 -n <APP_NAME> -g <RESOURCE_GROUP_NAME>
78
- ```
79
-
80
-- For Windows function apps, the runtime requires .NET 6.0 to be enabled with the following Azure CLI command:
81
82
- ```bash
+
+ # For Windows function apps only, also enable .NET 6.0 that is needed by the runtime
83
az functionapp config set --net-framework-version v6.0 -n <APP_NAME> -g <RESOURCE_GROUP_NAME>
84
```
85
0 commit comments