Comment by hypeatei
2 years ago
I think most are just ignorant of what .NET is today vs 10-15 years ago. From my own personal findings, most on HN and general online dev space think it's Windows only and that hasn't been true for ~8 years or so. Microsoft has shifted to an open source approach for almost everything and Linux & Mac are first class citizens.
Are there any relatively well known non-Windows apps written in .NET? I guess Discord? Any others?
Pretty much every non-GUI (and GUI if it's Avalonia/Uno/etc.) .NET application, unless it uses niche things like windows registery or management API, is by definition platform agnostic and runs wherever .NET runs (macOS, Linux, FreeBSD(with caveats), Android, iOS, Windows, sometimes in browser with WASM). Most businesses which have moved away from old versions run their server workloads on Linux hosts within K8S or otherwise.
Popular applications that run on Linux are
Jellyfin: https://github.com/jellyfin/jellyfin
Sonarr (and other High Seas apps): https://github.com/Sonarr/Sonarr
Ryujinx: https://github.com/Ryujinx/Ryujinx (the kind of project that could likely compete with writing a browser in complexity)
Bitwarden (server): https://github.com/bitwarden
Garnet: https://github.com/microsoft/garnet (likely the fastest Redis implementation)
Stride3D: https://github.com/stride3d/stride
Godot (offers C# as script language, using regular .NET)
Various MonoGame and FNA games (which use vanilla .NET unlike Unity, there was even a game on Nintendo Switch with private FNA fork).
From the top of my head, I'm sure there are many others.
Also git credential manager: https://github.com/git-ecosystem/git-credential-manager
2 replies →
Discord uses electron/React native. Where did you hear it uses .NET?
Apparently I guessed wrong. Not sure where I heard it, should have checked first.