Reputation: 9081
I have a worker coded using C# and I'd like to host it in Azure.
So I create an Azure automation account and I tried to import my worker project as a new runbook but I find that the runbook must be built on PowerShell Workflow !!!
So I need to know
NB: The worker is for sitemap generation
Thanks,
Upvotes: 0
Views: 50
Reputation: 4633
You could consider using Azure WebJobs or Azure Functions.
This article helps you in deciding which one to use.
If you need more control over the VM (like installing custom software) you could consider hosting your code as a 'Cloud service'
I would start of with Azure Functions to get something up and running quickly and then build on top of it.
Upvotes: 3