Azure-docs: Missing "Development" tab

Created on 11 Dec 2019  Â·  14Comments  Â·  Source: MicrosoftDocs/azure-docs

Hello! I'm trying to following the instructions to disable the storage emulator (https://docs.microsoft.com/en-us/azure/vs-azure-tools-storage-emulator-using#initializing-and-running-the-storage-emulator), however when I right-click on my Azure Functions project in Solution Explorer and click Properties, the resulting window doesn't have the mentioned "Development" tab. I see the normal Application, Build, Debug, etc. tabs but no Development tab. How can I disable storage emulator? It's not working for me (won't create the LocalDB database) so I'm trying to use Azurite instead, but am blocked by this.


Document Details

⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.

Pri2 cxp product-question triaged visual-studio-dev1prod vs-azurtech

Most helpful comment

OK, I will also update the document to add this info.

All 14 comments

@IGx89 We are looking into this and will get back to you shortly.

@IGx89 Thank you for bringing this to our attention! I see the same behavior with my VS too. While I reach out to our internal Team to gather more details around this, I'd like to know the VS version you are using, just so it might help in troubleshooting further.

@ghogen Could you please share your insights?

Sure! Visual Studio 2019 latest stable, 16.4.1

I'll look into this and talk with the engineering team. In the meantime, try editing your project file by adding the <StartDevelopmentStorage> element set to False to disable the Storage Emulator :

  <PropertyGroup>
    <TargetFramework>netcoreapp2.1</TargetFramework>
    <AzureFunctionsVersion>v2</AzureFunctionsVersion>
    <StartDevelopmentStorage>False</StartDevelopmentStorage>
  </PropertyGroup>

That's exactly what I was looking for, thanks! Didn't know about that element.

@ghogen Thanks for that tip!

@IGx89 Please try it out and let us know if you run into issues.

@IGx89 We will now proceed to close this thread as resolved, but if there are any further questions regarding the documentation, please tag me in your reply and we will be happy to continue the conversation.

OK, I will also update the document to add this info.

@ghogen Thanks for the update!

Sorry to comment on a closed issue:

<StartDevelopmentStorage>False</StartDevelopmentStorage>

; doesn't work on VS 2017 - I get a random behaviour where certain function apps do not start the storage emulator and certain ones do - no detectable difference between the projects.

I doesn't work in vs2019 either. I am trying to run using docker/azurite but i get an error from VS2019 that it can't start the Azure Storage Emulator...very frustrating.

@ghogen Can you please take a look?

If that doesn't always work, this should be investigated as a product issue - please enter at Dev Community.
https://developercommunity.visualstudio.com/spaces/8/index.html

https://developercommunity.visualstudio.com/content/problem/895743/startdevelopmentstorage-set-to-false-does-not-work.html - link to the feedback item on Dev Community.

The engineers wanted an example of a project that demonstrates the issue. @duranmg @PhilipSkinner

It worked for me on what I tried so far, but I can try to reproduce this. There are some other settings that might also be relevant.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

tvperez76 picture tvperez76  Â·  55Comments

keithdv picture keithdv  Â·  41Comments

Sudharma picture Sudharma  Â·  48Comments

DanijelMalik picture DanijelMalik  Â·  82Comments

smcd253 picture smcd253  Â·  44Comments