Every time i am trying to add a webjob under app service i am getting failure message. Previously it was working, from last 2 weeks i am not able to create a webjob.
Tried adding webjobs 50+ times
When i am trying to add manually through kudu its uploaded but under webjobs nothing created.
Error message Failed to add "Webjob name".
trying to create webjobs in azure portal>appservice>webjob>create new




I suppose this problem occurs because you don't have a specific file that webjob need.
I create a .net core console app, after publish it, I zipped the folder and want to upload it as a webjob.
failed, as yours.
The solution is add a .cmd file in the folder and zip it with other files.
run.cmd:
Now, these are the whole content that will inside the zip:
zip these files and upload.
Finally, works.
I hope this solution can help you. Please let me know if your problem is different from this.