Solved: Invalid combination of TargetFramework and AzureFunctionsVersion is set
Run into the following error while upgrading one of my Azure Function from .NET 5 to .NET 6.
Invalid combination of TargetFramework and AzureFunctionsVersion is set.
The reason that .NET 5 is supported by Azure Function v3 and .NET is supported by Azure Function v4.
Thus, these lines in project file should do the job:
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<OutputType>Exe</OutputType>
</PropertyGroup>
🚀 Turbocharge Your Infrastructure with Our Terraform Template Kits! 🚀
🌟 Slash deployment time and costs! Discover the ultimate solution for efficient, cost-effective cloud infrastructure. Perfect for DevOps enthusiasts looking for a reliable, scalable setup. Click here to revolutionize your workflow!
Learn More about Starter Terraform Kits for AKS,EKS and GKE
No comments are allowed for this post