A county-extension .NET site has a published output folder and no container workflow. Which App Service deployment approach should the developer use?
Select an answer to reveal the explanation.
Short Explanation
Got a published folder and no container story? Zip it up and ship it—ZipDeploy, az webapp deploy, or Run From Package. You do not need to invent a Docker image just to host ordinary .NET output on App Service.
Full Explanation
Code-based App Service apps accept package deployments such as ZipDeploy, the Azure CLI webapp deploy command, and Run From Package. Those mechanisms publish compiled output without requiring a container image or ACR. Full AZ-400 pipeline authorship is not a prerequisite to deploy a package, and routing App Service through ACI is unnecessary for this scenario.