Functions.Templates/Templates/TimerTrigger-FSharp/TimerTriggerFSharp.fs (10 lines of code) (raw):
namespace Company.Function
open System
open Microsoft.Azure.WebJobs
open Microsoft.Azure.WebJobs.Host
open Microsoft.Extensions.Logging
module TimerTriggerFSharp =
[<FunctionName("TimerTriggerFSharp")>]
let run([<TimerTrigger("ScheduleValue")>]myTimer: TimerInfo, log: ILogger) =
let msg = sprintf "F# Time trigger function executed at: %A" DateTime.Now
log.LogInformation msg