So far, we've created our functions directly in the Azure portal, but now we've created one using Visual Studio. This means we need to deploy this function to Azure ourselves. We have two obvious choices here: deploy using Visual Studio, which is a manual task, or deploy using Azure DevOps, which enables continuous integration and deployment.
Deploying Azure Functions
Deploying using Visual Studio
First, let's deploy using Visual Studio 2017 since it's quick and easy. A little warning up-front, though: this will overwrite the functions that are already in your Function App, so you'll lose them. Follow these steps to deploy using Visual Studio:
- Right-click your project and select Publish.... You&apos...