Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to share common code among the Azure functions?

I have common code which is require in other Azure functions, how can I share the common code among the Azure functions?

like image 984
Furqan Misarwala Avatar asked May 30 '17 12:05

Furqan Misarwala


1 Answers

If the Functions you are wanting to share code between are under the same Function App you can do the following:

https://stackoverflow.com/a/39541156/2854993

And if they are separate Function Apps, I asked a similar question - see:

Azure Functions - Shared code across Function Apps

like image 134
Chris B Avatar answered Sep 27 '22 17:09

Chris B