Skip to content

Commit f587417

Browse files
Edits.
1 parent ceb1a49 commit f587417

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed
62 Bytes
Loading

articles/azure-functions/update-language-versions.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,30 +27,34 @@ To ensure your apps continue to receive support, follow the instructions in this
2727

2828
## Prerequisites
2929

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:
3131

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.
3335

3436
::: 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:
3638

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).
3840

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.
4042

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/).
4244

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).
4446

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.
4648

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.
4850

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.
5052

5153
::: zone-end
5254

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.
5458

5559
### [Azure portal](#tab/azure-portal)
5660

0 commit comments

Comments
 (0)