Lamloumi Afif
Lamloumi Afif

Reputation: 9081

Host a c# worker in Azure

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

  1. If there is a way to import my C# worker?
  2. If not, I'd like to know How can I host my worker using my Azure account ?

NB: The worker is for sitemap generation

Thanks,

Upvotes: 0

Views: 50

Answers (1)

alwayslearning
alwayslearning

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

Related Questions