(no title)
paride5745 | 3 months ago
Go and Rust produce native binaries, I wish C# had an official native compiler without the big runtime needs of .Net.
paride5745 | 3 months ago
Go and Rust produce native binaries, I wish C# had an official native compiler without the big runtime needs of .Net.
cachius|3 months ago
Publishing your app as Native AOT produces an app that's self-contained and that has been ahead-of-time (AOT) compiled to native code. Native AOT apps have faster startup time and smaller memory footprints. These apps can run on machines that don't have the .NET runtime installed.
skeeter2020|3 months ago
parliament32|3 months ago
4rt|3 months ago
There's been some work on CoreRT and a general thrust to remove all dependencies on any reflection (so that all metadata can be stripped) and to get tree-shaking working (e.g. in Blazor WASM).
It seems like in general they're going in this direction.
midnitewarrior|3 months ago
Salgat|3 months ago
synergy20|3 months ago