Jari S
Jari S

Reputation: 1

Framework project requires Dotnet core runtime

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

Answers (1)

AjayKumarGhose
AjayKumarGhose

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

Related Questions