What is the simplest way to run a timer-triggered Azure Function locally once?

后端 未结 7 857
醉话见心
醉话见心 2020-12-13 12:03

I have a few C# Azure Functions that run on a schedule using timer triggers. I\'ve set them up like so, where %TimerSchedule% refers to a cron expression in the

相关标签:
7条回答
  • 2020-12-13 12:42

    If you are using VS Code, use the Azure Functions extension:

    1. Hit F5 to enter debug mode, this starts the function app.
    2. Go to the Azure icon in the Activity bar.
    3. Under Local Project, find the function you want to run, right click, and select "Execute Function Now".

    Check out this MS quickstart guide.

    0 讨论(0)
提交回复
热议问题