I have taken the giant step to re-(write? Do? Architect, whatever?) an existing production MVC 4 app to Asp.Net Core. We are running on 4.6.2 framework.
The current deployment is to Azure cloud Service (Classic). The deployment has startup tasks (install certs, install 3rd party software, install Microsoft software, ect).
After spending weeks getting the new Asp.Net Core web site up and running, I have come to find out you cannot deploy to Azure Cloud Service (at least not in the visual studio IDE??). I cannot seem to find out how to deploy to a App Service (even if I wanted too) and install software on startup tasks. (Does startup tasks even exist in App Services).
What are my deployment options? The current production site already has a DNS record pointing to the deployment and SSL Certs for HTTPS. I need to keep all of these things in place.
Am I out of luck here, or has Microsoft just hidden the answer in plan sight? All of MS samples of deploying Asp.Net Core are simple and trivial "Hello World" apps.