I am using Azure WebJob, but now I get the following error message:
No features found. Try publishing job classes and public static methods.
My code is so simple:
static void Main() { var host = new JobHost(); host.RunAndBlock(); } public static async Task BlobTrigger( [BlobTrigger("test/{name}")] Microsoft.WindowsAzure.Storage.Blob.CloudBlockBlob input, TextWriter log) {
In addition, I create a zip file from the debug folder and load it, and the task is configured for continuous operation.
source share