staticwebdev / blazor-starter

A starter template in C# APIs and Blazor for Azure Static Web Apps
217 stars 104 forks source link

.NET 6.0 for API Functions App #17

Closed dotnetnoobie closed 2 years ago

dotnetnoobie commented 2 years ago

Currently .NET 6.0 works for the Client app

But I am not able to make .NET 6.0 work for the Functions API app

Is there a way to tell the GitHub action that it needs to upgrade the Functions API app to .NET 6.0 as I see described in some docs about how to use .NET 6.0 preview in Functions Apps from this link What’s new with .NET on Azure Functions – June 2021

aaronpowell commented 2 years ago

Azure Static Web Apps currently only supports .NET 3.1 (see the docs on API support).

If you want to use another form of Azure Functions, you'll need to use bring your own Functions which is available on the Standard Tier.

I'd suggest following this issue for more indication of when other .NET runtimes are supported.