I'm trying to deploy my azure function (.NET Core 2.1) using zip based method but when I check the portal, Azure function always creates a sample run.csx to execute instead of executing my .cs file which contains run method tagged with function name.
Any ideas why is it unable to initialize the function after deployment?
I've tried:
- Pushing my deployment zip while a timer trigger function app with the same name existing.
- Deleting the above timer trigger function app then deploying the code.
In 1st case, previously existing run.csx is present in place of our function app. In 2nd case, no function gets initialized.
Edit 1:
File structure:
|__TimerFunc/ [TimerFunc.cs, function.json]
|__project.csproj
|__host.json