Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to deploy windows service on Azure App Service

I have developed a windows service. i need to deploy it in Azure App Service. Please someone explain me how to do that. Is there any way to install it on console or any other option.

like image 363
Dimuth Lochana Avatar asked Apr 29 '16 10:04

Dimuth Lochana


1 Answers

You can't deploy a Windows Service using App Service. One option is to convert your code into a Web Job. Another option is to use a Virtual Machine instead of App Service.

like image 136
CSharpRocks Avatar answered Nov 14 '22 14:11

CSharpRocks