Open-sourced a small C# / Avalonia tool that fixes Bluetooth MIDI on Windows Sharing a small C# / Avalonia project I open-sourced. .NET 10, MIT, around 4k lines, single self-contained \~21 MB exe. Bridges a Bluetooth LE MIDI keyboard into the new Windows MIDI Services loopback so any DAW or web MIDI app sees a regular MIDI port. Repo: [https://github.com/mayerwin/Perfect-Bluetooth-MIDI-For-Windows](https://github.com/mayerwin/Perfect-Bluetooth-MIDI-For-Windows) Site: [https://mayerwin.github.io/Perfect-Bluetooth-MIDI-For-Windows/](https://mayerwin.github.io/Perfect-Bluetooth-MIDI-For-Windows/) What might be of interest from a C# perspective: * Direct WinRT BLE-MIDI client built on Windows.Devices.Midi (no dependence on Korg's old WinMM driver). * Uses the new Microsoft.Windows.Devices.Midi2 packages on the loopback side. * Avalonia UI throughout, including a bidirectional on-screen piano control. * Headless CLI mode using System.CommandLine for scripted device debugging.…