I have a simple Azure Function which was running in .NET Core 3.1
I am now trying to update it to .NET 7 version 4.x and Im getting a very unhelpful message
System.Private.CoreLib: Could not load file or assembly 'Microsoft.AspNetCore.Mvc.Abstractions, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The system cannot find the file specified.
Has anyone come across this?
My packages are shown below
Even more annoying is that when I try to create a new function even though I have the latest Visual Studio I dont see .NET 7, only .NET 6 which is of no help either
The documentation on MS has instructions that havent been updated since 17.4 was in preview
Can anyone help please?
Paul