I'm trying to upload a file to a Windows Azure storage blob. I feel like I'm trying something really basic. I have a new ASP.NET MVC 4 Web Application (as in File->New Project...). When I get to the line shown below that reads "CloudStorageAccount.FromConfigurationSetting", an exception is thrown. That exception has the following information:
Type: System.Runtime.InteropServices.SEHException
Message: External component has thrown an exception.
Here is the code that I have:
// Setup the Windows Aure blob client
CloudStorageAccount.SetConfigurationSettingPublisher((configName, configSetting) => configSetting(RoleEnvironment.GetConfigurationSettingValue(configName)));
CloudStorageAccount storageAccount = CloudStorageAccount.FromConfigurationSetting("BlobStorage");
What am I doing wrong?