Reputation: 60841
Why is the portal showing no webjobs running?
I've made sure to set WEBSITE_RUN_FROM_PROJECT
to 0
Here's how the build is configured
The release is showing a successful deployment:
What am I doing wrong? Why can I not see the deployed webjobs?
Are there other resources to help us determine which webjobs are running?
Upvotes: 0
Views: 56
Reputation: 8468
You need to prepare correct WebJobs Folder Structure
in build artifact and consume it in release pipeline for deployment.
In build pipeline, for arguments
of publish task:
You can tick out the option Add project's folder name to publish path
as it will change the folder structure.
Then archive the publish_output
folder and then publish as build artifact.
In release pipeline, consume the build artifact for deployment.
You can also check my answer in another link.
Upvotes: 1