I don’t see .NET 7 Isolated as an option when I try to create a new Azure Functions app in Visual Studio 17.4 (Windows version).
Any idea why?
I don’t see .NET 7 Isolated as an option when I try to create a new Azure Functions app in Visual Studio 17.4 (Windows version).
Any idea why?
To use the Isolated model, you shall set your environment variable FUNCTIONS_WORKER_RUNTIME to dotnet-isolated and use these NuGet packages:
Microsoft.Azure.Functions.WorkerMicrosoft.Azure.Functions.Worker.SdkMore info here and especially here, where you can find lot of samples (with .NET7 too!)
dotnet6 (Isolated) one and then manually upgrade the csproj to net7.0<TargetFramework>net6.0</TargetFramework> <AzureFunctionsVersion>v4</AzureFunctionsVersion>