How can we create another run.csx and call the existing function from one csx file to another in an Azure Function App?
问问题
2094 次
1 回答
14
You can just write another file, e.g. lib.csx and load it via #load "lib.csx"
in your main script file. See here for the docs
As an example, place this into your run.csx
#load "lib.csx"
using System;
public static void Run(TimerInfo myTimer, TraceWriter log)
{
log.Info($"C# Timer trigger function executed at: {DateTime.Now}");
log.Info(doubleTheInt(5).ToString());
}
and that into a lib.csx
using System;
public static int doubleTheInt(int x) {
return x+x;
}
and it should output 10 in the log
于 2016-07-29T00:02:00.213 回答