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 who hosts the App inside Kestral.
My question is, is this ".exe" is 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.
And if I am not wrong the application itself acts a the worker process to run the application code?