Creating the function app using Visual Studio 2017
In this recipe, you will learn how to create an Azure Function in your favorite IDE Visual Studio 2017.
Getting ready
You need to download and install the following tools and software:
- Download Visual Studio 2017 Preview Version 15.3.0, Preview 2.0, or higher. You can download it from https://www.visualstudio.com/vs/preview/.
- Choose
Azure development
in theWorkloads
section while installing, as shown in the following screenshot, and click on theInstall
button.

- Download Azure Function Tools for Visual Studio 2017 from https://marketplace.visualstudio.com/items?itemName=AndrewBHall-MSFT.AzureFunctionToolsforVisualStudio2017.
How to do it...
- Open Visual Studio and choose
File
and then click onNew Project
. In theNew Project
dialog box, in theInstalled
templates, underVisual C#
, selectCloud
and then select theAzure Functions
template:

- Provide the name of the function app. Click on the
OK
button to create the function app after choosing a location...