Deploying ASP.NET Core From A Zip File on Azure

1 · Phil Haack · July 12, 2019, 5:17 p.m.
Azure has a neat feature that runs Azure Functions from a package file (aka a zip file). This same feature also applies to Azure Web Apps, though you wouldn’t know it from the documentation. The Run from Package docs only mention Azure Functions. The GitHub issue that announced the feature makes it clear this also applies to Web Apps. Run From Package is an exciting new feature which lets you run a Web App or Function App by simply pointing it to a zip file containing your files. There are som...