Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The missing value for AzureWebJobsStorage can be solved by providing a connection string for a local development storage emulator or a Azure Storage account.

  1. For local storage emulator connection string, install and run the Azure Storage Emulator from the Azure Storage SDK. Then, use the following connection string in your local.settings.json file:

"AzureWebJobsStorage": "UseDevelopmentStorage=true"

  1. For Azure Storage account connection string, go to the Azure portal, create a Storage account, and get the connection string from the Access keys tab. Use the following format in your local.settings.json file:

"AzureWebJobsStorage": "DefaultEndpointsProtocol=https;AccountName=yourAccountName;AccountKey=yourAccountKey;EndpointSuffix=core.windows.net"

Make sure to replace yourAccountName and yourAccountKey with your actual Azure Storage account information.