Visual Studio has an Azure Function project. The steps are covered in the docs, see the link below. Step 4 in the doc is where you can define the .NET Framework rather than Core.
How to create .NET 4.8 Function App
Andrew Syrov
51
Reputation points
Can anyone point me to a reference on creating a function app that uses .NET 4.8? My understanding is that for this I need function tools version ~1. I installed them with but cannot generate C# project. Installation was done with choco: choco install azure-functions-core-tools --version =1.0.0.15
.
Now, when I try to create a C# function I'm only able to generate *.csx but not a C# project. Can I somehow create C# project, which is a function app and yet uses .NET 4.8?
Thanks!