Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created August 18, 2017 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save justinyoo/356a7d27f990a9c57b12fee7c2a3fef6 to your computer and use it in GitHub Desktop.
Save justinyoo/356a7d27f990a9c57b12fee7c2a3fef6 to your computer and use it in GitHub Desktop.
Order to Take Storage Account Settings on Azure WebJobs
<configuration>
<connectionStrings>
<!-- <add name="AzureWebJobsDashboard" connectionString="UseDevelopmentStorage=true" />
<add name="AzureWebJobsStorage" connectionString="UseDevelopmentStorage=true" /> -->
</connectionStrings>
<appSettings>
<add key="AzureWebJobsDashboard" value="UseDevelopmentStorage=true" />
<add key="AzureWebJobsStorage" value="UseDevelopmentStorage=true" />
</appSettings>
...
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment