Azure functions - pre-compiled C # function with TimerTrigger - class TimerInfo

I want to have a precompiled Azure function based on a timer trigger.

Which nuget package do I need to install or which dll do I need for a link to access the TimerInfo class? I can’t find anything.

+5
source share
1 answer

TimerInfo defined in the Microsoft.Azure.WebJobs.Extensions package in the Microsoft.Azure.WebJobs namespace.

+13
source

Source: https://habr.com/ru/post/1265130/


All Articles