I use Azure Functions extensively, and I've been trying do develop some kind of common utilities library for using in Functions projects. I am also attempting do declare some common useful functions that I use accross many projects. As an example, this is a DbLog Activity function for logging in orchestration methods:
[FunctionName(LoggingFunctionNames.DbLog)]
public static void Run([ActivityTrigger] IDurableActivityContext context)
{
var input = context.GetInput<DbLogInput>();
Write(input); // writes to database
}
The issue is I wasn't able to make my project identify Functions declared outside itself. Is it possible to do so?