I'm trying to use Visual studio 2019 to create develop & test Azure function locally. So I did install the ASP.NET & Azure development workload modules from the Visual Studio installer. I was able to create a new project using the azure function template using .NET 2.
This created a boilerplate .cs code.
Now here's where the problem is. I'm trying to add a new azure function to my project using the Add > New Item menu from the context menu when right clicked on the project. In the list of templates there is no Azure function templates listed. I've used the search option to filter the templated but end up getting No items found message.
I am not sure what's wrong with my Visual Studio. Does anyone have faced this issue with missing templates and resolved it? Let me know.
I tried to reproduce your issue as I have added another azure function class to the function app project successfully in visual studio 2019 locally. Steps I followed:
Make Sure you have installed these two:
Microsoft.Net.Sdk.Functions
in Project Nuget Manager in VSIf you skip 2nd option, then obviously you will not get add azure function option which I have uninstalled and tested it.
Above is the .Net Core 3.1 Project and below is the .Net Core 2.1 Project:
In Every project, this extension from the nuget package manager is to be installed.