Improve C# Console App Startup and Runtimes with AOT and Avoid Spawning conhost.exe
February 21, 2024
I’ve written a very simple .NET8 C# app that does nothing other than fire off a HTTP request. None of the HTTP parameters need to ever change, and we don’t care about the return data or even whether the request is successful. All it does is make the request and then the program…