I have two Azure Functions in same project, one is TimeTrigger and another is QueueTrigger. When I run my project, TimeTrigger function working properly but QueueTrigger function throwing error as
Microsoft.Azure.WebJobs.Host: Error indexing method 'MyFunction'. Microsoft.WindowsAzure.Storage: Settings must be of the form "name=value".
I feel like this issue is because I have two different Azure Functions in same project (TimeTrigger and QueueTrigger) but not sure I'm still looking into that issue.
Note: Please ignore my issue if this is not related to having QueueTrigger and TimeTrigger azure functions in same project, my actual question in below.
I know that we can have different types of azure functions in same project, like TimeTrigger and HttpTrigger. Now my question is may I have all types of azure functions in same project? or are there any rules for having different types of azure function in same project?
My project in .NetCore 2.1, Azure Function Core Tools 2.7 and Function Runtime Version 2.0.