Reputation: 349
I am playing with an Azure Web Job project in Visual Studio (C#) that is triggered from messages added to a storage account queue.
At present I cannot find a way to determine the connection string of my local queues.
When I select my local storage account I don't see any properties
However, when I select an Azure hosted storage account I get a lot more properties, including a connection string:
For the job to work I need to provide these app config values:
The Azure Storage Account emulator is running on my machine.
Upvotes: 5
Views: 6187
Reputation: 17800
Just use UseDevelopmentStorage=true
as the value of connectionString.
And remember to update your Microsoft.Azure.WebJobs
package to latest version(>=v2.0.0) or the emulator connection string can't be recognized.
Upvotes: 7