Azure Functions Vanishing into Thin Air

Azure Functions vanishing into thin air

When you create Azure functions you can create functions in two different ways. You can edit the functions in Azure or you can create the functions in Visual Studio and deploy them to Azure. In this post I’m looking at both options and will described the situation I found myself in a while back when functions vanished into thin air.

First of all I’m going to have a look at the two different ways of creating functions.

A Function App in Azure

Before  it is possible to create a function I need to create function app.

The Function App holds all the functions that you create.

Creating a Function in Azure Manually

You can create a new function by clicking on the plus sign next to the Functions section in your function app.

aZURE FUNCTIONS VANISHING
MyVanishingFunctions

You then get a few options given to create  your functions. The In-Portal option is quite nice as you can type your functions and you can see what the functions do without having to refer back to your code.

Azure Functions

Then you can select a template

Azuer Functions

In my case I selected the Webhook option and my function is ready to run. I can call this function from my favourite workflow engine, Microsoft Flow.

aZURE FUNCTIONS VANISHING
HttpTrigger1

Ready to have a look at the other deployment options

Deploying a function to Azure with Visual Studio

It is also possible to publish your Functions to Azure using Visual Studio. This helps if you want to debug some code. You can simply set breakpoints and run the function like you would do with any other code in Visual Studio.

Imagine if you created some Functions in your Function app and you decide to create your next function in Visual Studio.

Great Idea? We will find out!

The steps in Visual Studio are.

Create a new project.

aZURE FUNCTIONS VANISHING
Visual C#

Select the template

HTTP Trigger

Admire the code generated for you.

Now you can publish your function to azure functions.

Functions

Now you can publish your function to Azure:

App Service

When you click on Ok, you will get a big clue!

Publish

The delete existing files is set to true by default. So that when you create all your functions there is no mess left behind from previous versions. A good idea! But if you created some functions in a different way or different project before they will also be removed.

You can change this is the profile settings for your connection by deselecting the Remove additional files at destination setting.

aZURE FUNCTIONS VANISHING
Publish

About the Author:

Since 2007 I’ve worked with SharePoint as a Consultant, Developer and Architect. I’m currently working HybrIT Services (https://hybrit.co.uk). In 2017 Microsoft has awarded me with an MVP Award in the category Office Servers and Services.

Reference:

Veenstra, P. (2020). Azure Functions vanishing into thin air. Available at: https://sharepains.com/2019/06/18/azure-functions-vanishing-into-thin-air/ [Accessed: 19th MAy 2020].

Check out more great Azure content here

Share this on...

Rate this Post:

Share:

Topics:

Azure