berko
berko

Reputation: 2975

Azure Functions - Precompiled C# function with TimerTrigger - TimerInfo class

I want to have a precompiled Azure Function that is based off a timer trigger.

What nuget package do I need to install, or what dll do I need to reference to get access to the TimerInfo class? I can't find it anywhere.

Upvotes: 7

Views: 2043

Answers (1)

mathewc
mathewc

Reputation: 13558

TimerInfo is defined in package Microsoft.Azure.WebJobs.Extensions under namespace Microsoft.Azure.WebJobs.

Upvotes: 15

Related Questions