1 min read
Implement task processing logic by using Azure Functions Part 2 – Configure local Azure Functions project
Before you create your function make sure that you have enabled the Azure Functions extension in visual studio code.

Create the functionapp and select dotnet
func init az204labfunctionproject

Get the connectionstring for your azure storage
az storage account show-connection-string -n az204lab02storage
Now go into your Azure functions project and change the storage account to your storage account connection string.

Save and build
dotnet build

In the next post we’ll create our very own function that triggers on http!