Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Created August 18, 2017 14:35
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/e8baf9b9f70b9ee4ad4b965d69dee1ee to your computer and use it in GitHub Desktop.
Save justinyoo/e8baf9b9f70b9ee4ad4b965d69dee1ee 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