is it possible to run windows service / app (c#) on heroku platform?

c#, heroku

Solution

There are some Heroku buildpacks for that use Mono to run .NET and C#. Here's the one that I built: https://github.com/friism/heroku-buildpack-mono

Problem

I am checking the possibility to run my C# service on the Heroku platform... Does anyone have an experience with such a solution?

Original source