I am using Microsoft.Azure.Webjobs (3.0.8) and I am getting an error an compile time stating
listener for function 'Functions.ProcessCollateFiles' was unable to start.
Inner Exception 1:
ArgumentNullException: Value cannot be null.
Arg_ParamName_Name
I am looking at the samples in the nuget documentation and I cannot see what is causing the issue.
My function is
public void ProcessCollateFiles([TimerTrigger("0 */1 * * *", RunOnStartup = true)]TimerInfo timerInfo)
{
// _logger.Log(LogLevel.Information, "tester");
Console.WriteLine("test");
}
I have noticed that the null value is for a parameter of connectionString I am not sure what this is used for with regards to the TimerTrigger though