How to deploy azure function (executed on schedule) with code as string (in c#) to given azure functions app?
I am going to use ARM template to depl
If you're going to deploy the function itself directly from code as opposed to using a CI/CD pipeline then your best bet is to use the Kudu REST APIs to upload the function code as a zip to the running function app. You should be able to make do using HttpClient or any of the other .NET REST libraries.