Reputation: 1
I'm trying to run a .Net Framework 4.8 Azure function project but I'm unable to build it.
When trying to build it says "Error: This Azure Functions project requires .NET Core 4.8 runtime."
How is this possible? Is this somehow dependency related?
Upvotes: 0
Views: 101
Reputation: 4923
As rickvdbosch suggested we can choose only the V1 which is the .Net framework
version .
And after creating we can select the .net framework
versions according to requirement.
Please refer this for more information MS DOC: Supported versions in Azure function , Azure Functions runtime versions & GitHub : Create Azure Function V1 in VS 2019
Upvotes: 2