Home > Back-end >  How to create .Net Core Azure WebJobs from Visual Studio?
How to create .Net Core Azure WebJobs from Visual Studio?

Time:11-13

I am starting my first day with a few azure services.

I have a windows service and I want to create its equivalent cloud service, I have read enter image description here

enter image description here

CodePudding user response:

how to create WebJobs from the Azure portal?

Firstly you need to create a web apps(App services) service as below:

enter image description here

Then in Left pane type webjobs you will find add to create a web job as below:

enter image description here

The file we upload here should come from Visual studio web job.(create a project with azure web job and import that in azure portal).

enter image description here

After giving all details you will get your web job created as below:

enter image description here

AFAIK, This is the way(you need to create console app) to do webjobs in Visual Studio and also refer Doc1,Doc2 for more information.

  • Related