You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/update-language-versions.md
+15-11Lines changed: 15 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,30 +27,34 @@ To ensure your apps continue to receive support, follow the instructions in this
27
27
28
28
## Prerequisites
29
29
30
-
Before you update the stack configuration for your function app in Azure, you should complete these tasks:
30
+
Before you update the stack configuration for your function app in Azure, complete these tasks:
31
31
32
-
- Test and verify your function code locally on the new target version.
32
+
### Verify your functions locally
33
+
34
+
Make sure that you test and verify your function code locally on the new target version.
33
35
34
36
::: zone pivot="programming-language-csharp"
35
-
Use these steps to update the project on your local computer:
37
+
Use these steps to update the project on your local computer:
36
38
37
-
1. Ensure you [installed the target version of the .NET SDK](https://dotnet.microsoft.com/download/dotnet).
39
+
1. Ensure you [installed the target version of the .NET SDK](https://dotnet.microsoft.com/download/dotnet).
38
40
39
-
If you're targeting a preview version, see [Functions guidance for preview .NET versions](./dotnet-isolated-process-guide.md#preview-net-versions) to ensure that the version is supported. Using .NET previews might require more steps.
41
+
If you're targeting a preview version, see [Functions guidance for preview .NET versions](./dotnet-isolated-process-guide.md#preview-net-versions) to ensure that the version is supported. Using .NET previews might require more steps.
40
42
41
-
1. Update your references to the latest versions of [Microsoft.Azure.Functions.Worker](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker/) and [Microsoft.Azure.Functions.Worker.Sdk](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Sdk/).
43
+
1. Update your references to the latest versions of [Microsoft.Azure.Functions.Worker](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker/) and [Microsoft.Azure.Functions.Worker.Sdk](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Sdk/).
42
44
43
-
1. Update your project's target framework to the new version. For C# projects, you must update the `<TargetFramework>` element in the `.csproj` file. For more information about your version, see [Target frameworks](/dotnet/standard/frameworks).
45
+
1. Update your project's target framework to the new version. For C# projects, you must update the `<TargetFramework>` element in the `.csproj` file. For more information about your version, see [Target frameworks](/dotnet/standard/frameworks).
44
46
45
-
Changing your project's target framework might also require changes to parts of your toolchain, outside of project code. For example, in Visual Studio Code, you might need to update the `azureFunctions.deploySubpath` extension setting through user settings or your project's `.vscode/settings.json` file. Check for any dependencies on the framework version that exist outside of your project code, as part of build steps or a CI/CD pipeline.
47
+
Changing your project's target framework might also require changes to parts of your toolchain, outside of project code. For example, in Visual Studio Code, you might need to update the `azureFunctions.deploySubpath` extension setting through user settings or your project's `.vscode/settings.json` file. Check for any dependencies on the framework version that exist outside of your project code, as part of build steps or a CI/CD pipeline.
46
48
47
-
1. Make any updates to your project code that the new .NET version requires. Check the version's release notes for specifics. You can also use the [.NET Upgrade Assistant](/dotnet/core/porting/upgrade-assistant-overview) to help update your code in response to changes across major versions.
49
+
1. Make any updates to your project code that the new .NET version requires. Check the version's release notes for specifics. You can also use the [.NET Upgrade Assistant](/dotnet/core/porting/upgrade-assistant-overview) to help update your code in response to changes across major versions.
48
50
49
-
After you make those changes, rebuild your project and test it to confirm your app runs as expected.
51
+
After you make those changes, rebuild your project and test it to confirm your app runs as expected.
50
52
51
53
::: zone-end
52
54
53
-
- Make sure your function app is running on the latest version of the Functions runtime (version 4.x). You can determine the runtime version either in the Azure portal or by using the Azure CLI.
55
+
### Move to the latest Functions runtime
56
+
57
+
Make sure that your function app runs on the latest version of the Functions runtime (version 4.x). You can determine the runtime version either in the Azure portal or by using the Azure CLI.
0 commit comments