how to host .net core 2.1 generic host in azure

Viewed 205
1 Answers

Simplest way: Write a docker file and host it as container

Harder way: Host it on VM

AppService is designed for Owin or/and GlobalAsax composition root. You won't be able to run them without a startup.cs class

Related