In my software project I'm heavily using the WinAPI function "SetParent()" to embed multiple instances of a terminal program into my app.
AFAIK there is no way to convert my app into an UWP app, even with the desktop bridge. That's sad because the app is performing very well on Windows 10.
Is there any possibility to still publish it in the Windows Store? Would it be possible to submit something like a stub UWP-app, which would contain only the download link to the .msi package of my non-UWP app which the user could then install?
EDIT:
Using the desktop bridge I could successfully create a .appx package for my .NET 4.6.1 WinForms app. I could also start multiple instances of a Win32 app from my .NET app with Process.Start() and embed its window with SetParent(). The Win32 and the .NET app are running in the same sand box. Both apps have to meet special requirements (https://docs.microsoft.com/en-us/windows/uwp/porting/desktop-to-uwp-prepare), otherwise it won't work.