I have my WPF application developed. I want to deploy it and handle the updates every time I create new version.So I am thinking of pushing my WPF app to windows store.
In WPF I am using some windows desktop specific API's that are not supported in UWP apps anymore for example System.Diagnostics.Process
.
Is there a way to publish my wpf application to windows store to manage deployment and upgrades?
Edit for possible duplicate:
This is different question because I have several .exe files downloaded from my wpf app and I want to launch then from my wpf app. (You can think of this wpf app as Steam or Facebook Gameroom ). And from several resources I came to conclusion UWP apps wont be able to achieve that functionality.(here)
Thanks :)