Hacker News new | ask | show | jobs
by seabrookmx 291 days ago
Dotnet allows you to make stand-alone builds without AOT compilation as well. Like with bun, it simply bundles the JIT and you get a large executable. The command looks like `dotnet publish -r linux-x64 --self-contained true` (substitute your platform obviously).
1 comments

Ah I had completely forgotten about that with all of the AOT stuff I've been watching. That's a great point.