But for a few features I'd like my project to respond to some simple HTTP Rest requests. As the project will handle COM + and other things, I will do it in C #.
The issue is, I do not want to have to deal with IIS and wanted something simpler, like an .exe that can run and self-host.
Something very much like things like Flask for Python, or Express for Nodejs, where you determine the routes, the type of method, execute it and that's it.
Is there any framework for something similar in .NET?