After the build, inside the bin folder, there are 2 main files
{AppName}.exe and {AppName}.dll, what I understand is AppName.dll is the actual compiled application code and AppName.exe is the host which hosts the app inside Kestrel.
My question: is this .exe due to the Program.cs, and is it the one that acts as a worker process under which our application runs because we get the process name as application name for ASP.NET Core 5 and not dotnet (dotnet.exe) anymore.