ASP.NET Core seems to package a Kestrel service inside a .exe file.
All the instructions I've looked at for hosting ASP.NET Core apps in IIS seem to reference having an entry point (Main() method) inside a DLL.
How do I stage the .exe file such that IIS recognizes it?
I don't see that part of the publishing process, and I would think that would be a very common step seeing as that is the default output of ASP.NET Core.


