I'm relatively new to MassTransit and have been following the tutorials on the MassTransit website, which are all working as expected, but I have some questions regarding deployment.
Tutorials: https://masstransit-project.com/usage/consumers.html#consumer
I'm wondering at the most basic level how someone creating a MassTransit Consumer in a .NET 6.0 Console Application would deploy this console application on a Windows Server and ensure that it's always up and running to consume messages? Say for example the server was rebooted, etc...
Short of creating a Docker container, what other options exist? Run a WorkerService as a Windows Service?