ravibpatel / AutoUpdater.NET

AutoUpdater.NET is a class library that allows .NET developers to easily add auto update functionality to their classic desktop application projects.
MIT License
3.06k stars 770 forks source link

Support for MacOS: Possible to decouple WinForms UI-dependency? #643

Open josteink opened 1 year ago

josteink commented 1 year ago

When developing cross-platform GUI applications with frameworks like Microsoft MAUI or Avalonia UI, you can publish your apps and run them on MacOS, Linux, smart-fridges or whatever.

However right now it seems like AutoUpdater.NET relies on WinForms to show update-dialogs, which means you can't use AutoUpdater.NET for any of those platform targets.

Would it be possible to reuse some of the core in AutoUpdater.NET, but make it possible to wire up your own UIs to improve cross-platform support and support for other UI libraries?

ravibpatel commented 11 months ago

It is possible but requires some work. In the future, I may create a decoupled solution that can be used across other UI frameworks.