Has anyone tried the October 2012 Azure sdk with usedevelopmentstorage=true connection string ?
CloudStorageAccount.Parse("UseDevelopmentStorage=true")
throws a 'The given key was not present in the dictionary' exception.
CloudStorageAccount.DevelopmentStorageAccount
works ok.
Is this a bug in the azure sdk ?
This is a bug in v2.0.0.0 of the storage SDK (it requires you to use DevelopmentStorageProxyUri in the connection string if you're working with development storage). These are the workarounds:
DevelopmentStorageProxyUri
setting: CloudStorageAccount.Parse("UseDevelopmentStorage=true;DevelopmentStorageProxyUri=http://ipv4.fiddler");
CloudStorageAccount.DevelopmentStorageAccount;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With