Yes, looking at the documentation for Azure Functions runtime versions, it looks like v1 was the only one to support .NET Framework (aka the Windows desktop framework) rather than .NET Core / .NET.
That's presumably why the v1 description includes:
Recommended only for C# apps that must use .NET Framework and only supports development in the Azure portal, Azure Stack Hub portal, or locally on Windows computers.
So if your app must use .NET Framework as opposed to .NET 5/6 or .NET Core, you'll need to stick to v1. It's not clear where your deployment screenshot comes from, but it sounds like you can create a v3 app in the portal and then downgrade it to v1 before adding any functions.
Ultimately though, I would expect keeping deploying on v1 to become trickier and trickier. Eventually I suspect you'll have to move off it (although I don't have any idea when that would be) so it's worth coming up with a plan for that sooner rather than later.