I was reading an article How to create your own auto direct message Twitter bot for free. It uses Twitter's streaming API and NodeJS to send the auto DM. It uses Heroku to host the NodeJS app.
I was wondering that I can create same application in C# as a console app, but how can I host it on cloud or PaaS provider? If I have AWS EC2/Azure Windows VM then I can run the app forever on it and it will send auto DM but is there any PaaS provider which allows me to host continuously running C# console app?
PS : I am not talking about .NET Core. This is normal .NET based C# Windows console app. If there is solutions in .NET Core I would be happy to know.