Is it possible to deploy multiple versions of a UWP application to start a user at the same time?

We currently have an internal WPF application that serves businesses differently for different departments. We have a phased deployment process that accepts changes using the following steps:

  • Development (local)
  • Alpha testing
  • Beta testing
  • Live

Developers should be able to run all of these versions of the application, and some users gain access to the beta to sign up for new features.

This is currently done through the Launcher application, deployed through ClickOnce, which downloads and runs client binaries for the selected version. Each version of the application is hosted by the corresponding web service on the corresponding server (alpha, beta, live).

Does anyone know how to do this through UWP? We want to provide a future application and think about surface support, a Windows phone, etc. But in all cases, developers and users must have access to different versions of the application, sometimes even launching them at the same time.

Is such a parallel deployment of multiple versions of the same UWP application supported?

+4
source share
1 answer

For development, these applications can be installed through powershell. From the AppStore, you will only get the latest released version, but locally you can do what you want.

powershell . , .

+1

Source: https://habr.com/ru/post/1625981/


All Articles