We'll create our new function in the same solution. This enables us to keep all the functionality together for the logic app:
The project type that we're creating is one of the new ones that was added by the Azure workload—it's Azure Functions:
Once you select this, you'll be presented with a dialog asking what kind of function you would like to create. Azure Functions v2 is now out, and it utilizes .NET Core, so we'll choose that, and we'll select Http trigger:
A full and detailed explanation of Azure functions and exactly ...