>>105828918Perhaps my problem was that I had only been doing low-level C-like stuff with C# before that. Then, like a decade later, I picked C# from the choices MS gave me for a web app as the hardest-core option in Azure.
Right off the bat, I picked .Net 9, but their framework stuff only supported .Net 8.
There’s been so many versions of this stuff you need to use, (the web request entry points) I tried lots of examples and many of them used the wrong version, or did things that were deprecated, etc. I found it very frustrating. Two days, and i needed to switch to VS code with the Azure extensions I finally got it to work, but I don’t know why or how.
Normally I write code compatible with the built-in CSC compilier (like .Net 2.0) so I can get things done when I find myself needing to write a network tunnel to make something work in an emergency and I don’t or can’t set up a whole dev env…
… that’s what MS is locking you into… a whole VS Code or VStudio env just to write a hello world program, but I don’t want that every time.