I am trying to publish an azure webjob from the command line but it does not actually deploy to azure.
I am able to successfully publish using Visual Studio 2019 using the Publish... option. VS2019 builds, publishes and deploys.
My command line attempt seems to build and publish, but no deploy.
The command line I am using is:
dotnet.exe publish Events.WebJob.csproj --verbosity n /p:PublishProfile="hssedapi-dev-webdeploy" /p:Password="${apipwd}" /p:UseAppHost=true
dotnet --version returns "2.2.202"
I found "Develop and deploy WebJobs using Visual Studio - Azure App Service" which is fairly current. It has a link to "Enabling Command-line or Continuous Delivery of Azure WebJobs" but it is from 2014.