I downloaded and installed successfully the Azure Storage emulator, referencing the application to retrieve content from the appsetting.json by injecting this code
DefaultEndpointsProtocol=http;
AccountName=devstoreaccount1;
AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;
BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;
TableEndpoint=http://127.0.0.1:10002/devstoreaccount1;
QueueEndpoint=http://127.0.0.1:10001/devstoreaccount1;


however it isn't working, i also tried to point the app to the App.config file where I place the code as

 <appSettings>
      <add key="StorageConnectionString" value="DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;
      AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;
      BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;
      QueueEndpoint=http://127.0.0.1:10001/devstoreaccount1;
    TableEndpoint=http://127.0.0.1:10002/devstoreaccount1;" />
  </appSettings>


With no success either way, the content is still being pulled from the origin
Question: It is Nopcomerce code suitable to include the Azure storage emulator as local proposition or what is the correct way to implement it?
Thank you