How to update your Azure Functions from version 2 (V2) to version 3 (V3)
Here is a small and quick article about how to perform the update in your C# project that contains the Azure Functions of your application
Initially your .csproj file will look similar to the following code:
In order to update your functions to version 3 do the following changes:
See how we moved from net.core 2x to 3x and also the change in the AzureFunctionsVersion property. Here you can see the documentation about the different versions of Azure Functions.