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
CodePudding user response:
how to create WebJobs from the Azure portal?
Firstly you need to create a web apps(App services) service as below:
Then in Left pane type webjobs you will find add to create a web job as below:
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).
After giving all details you will get your web job created as below:
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.