Azure Functions - Shared code across Function Apps

Viewed 4358

Is there a way of sharing common code across two different Function Apps in Azure?

I understand it is possible to share code between two functions under the same Function App like so:

#load "../Shared/ServiceLogger.csx"

but I would like to share logging code between two different functions, each under it's own Function App. The reason for the functions being under two different Function Apps is that I need one to run on the Consumption plan and the other run on an App Service plan, unless there is another way of doing this?

3 Answers
Related