Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

[Commerce Azure]Azure configuration settings are not added to web.config file

Found in

Commerce.Azure 8.10

Created

Mar 26, 2015

Updated

Apr 03, 2015

Area

Falcon/Commerce

State

Closed, Fixed and Tested


Steps to reproduce

Unable to apply the transformation to add Azure connection strings to connectionstrings or episerverframework section if connectionstrings .config or episerverframework.config files are not available.

 

Steps to reproduce

  1. Using Visual Studio to create an Commerce site project
  2. Install Commerce.Azure nuget package into created project

    Expected: Azure blob, azure event configuration settings are added to connectionstrings, and episerverframework sections

          <add name="EPiServerAzureBlobs" connectionString="DefaultEndpointsProtocol=

          <add name="EPiServerAzureEvents" connectionString="Endpoint=sb://

and

<blob defaultProvider="azureblobs">
    <providers>
      <add name="azureblobs" type="EPiServer.Azure.Blobs.AzureBlobProvider,EPiServer.Azure" connectionStringName="EPiServerAzureBlobs" container="mysitemedia" />
    </providers>
  </blob>
  <event defaultProvider="azureevents">
    <providers>
      <add name="azureevents" type="EPiServer.Azure.Events.AzureEventProvider,EPiServer.Azure" connectionStringName="EPiServerAzureEvents" topic="MySiteEvents" />
    </providers>
  </event>

Actual: These settings are Not added.