I have a solution in Visual Studio 2019, I added a new project of type "Azure functions". I have a function in that project that runs on a timer trigger.
I want to run that function only once during debug, is there a way to do that without fiddling with the timer settings so that it will only start, like, 10 seconds after I start debugging?
The function does not have any endpoints and it's not being called by anything, its point is to run on a schedule.
If I were to start debugging and set the timer to run it every X, but I want to run it explicitly only one time while debugging.