
Related topics
Scenario: Assume you developed an online shopping. When a new product is added to the shop. A message is sent to a storage queue. You want to develop a Azure function that’s triggered when a message is pushed to the storage queue and create a thumbnail image for the newly added project from the product’s image.

About Azure Function Console in Visual Studio
When you develop an Azure Function App and you want to test and run it on your local machine always a console opens as follows. You can follow the progress of your function via this console if you use the Ilogger framework.
# For example
log.LogInformation($"C# Queue trigger function processed:{queueMessage.ImageName}");

But this consol stays open after stop the debugging. Therefore you can use the Tool > Option > Select Close console after stop debugging automatically.

Listen to your inspirations, they know more about the future than you.
Parisa Moosavinezhad
2 thoughts on “Develop Azure Function App in VS”