-
-
Notifications
You must be signed in to change notification settings - Fork 3
AzureConnectionString Configuration
Randolph West edited this page Dec 20, 2016
·
1 revision
The connections.config file is required to provide credentials to the Azure Blob Storage account. The format of this file is as follows:
<?xml version="1.0" encoding="utf-8"?>
<connectionStrings>
<clear /> // Clears any other connectionStrings in the app.config file
<add name="AzureConnectionString" connectionString="DefaultEndpointsProtocol=https;AccountName=<storageAccount>;AccountKey=<redacted>" />
</connectionStrings>
This connection string can be copied and pasted from the Azure Portal, from the Primary Connection String for your storage account.