I just tried creating a new Azure Function, the way I've always done it, for the past 4-5 years...but this time, func init
defaulted to the "V2 programming model". I don't want to use the completely different V2 programming model.
How do I create Azure Functions with the V1 programming model?
I just tried creating a new Azure Function, the way I've always done it, for the past 4-5 years...but this time, func init
defaulted to the "V2 programming model". I don't want to use the completely different V2 programming model.
How do I create Azure Functions with the V1 programming model?
Share Improve this question edited Nov 20, 2024 at 4:17 RithwikBojja 11.4k2 gold badges5 silver badges15 bronze badges Recognized by Microsoft Azure Collective asked Nov 20, 2024 at 4:06 SeaDudeSeaDude 4,4158 gold badges48 silver badges89 bronze badges1 Answer
Reset to default 0Cool. I was able to change the command found in this answer. The key is the V1
below.
Used func init <proj-name> --python -m V1